@@ -14,39 +14,35 @@ * file. */ #include "config.h" -#include - #import "OFSortedList.h" + +#import "macros.h" @implementation OFSortedList - (of_list_object_t*)appendObject: (id)object { - [self doesNotRecognizeSelector: _cmd]; - abort(); + OF_UNRECOGNIZED_SELECTOR } - (of_list_object_t*)prependObject: (id)object { - [self doesNotRecognizeSelector: _cmd]; - abort(); + OF_UNRECOGNIZED_SELECTOR } - (of_list_object_t*)insertObject: (id)object beforeListObject: (of_list_object_t*)listObject { - [self doesNotRecognizeSelector: _cmd]; - abort(); + OF_UNRECOGNIZED_SELECTOR } - (of_list_object_t*)insertObject: (id)object afterListObject: (of_list_object_t*)listObject { - [self doesNotRecognizeSelector: _cmd]; - abort(); + OF_UNRECOGNIZED_SELECTOR } - (of_list_object_t*)insertObject: (id )object { of_list_object_t *iter;