@@ -12,20 +12,22 @@ * Public License, either version 2 or 3, which can be found in the file * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ -#import "OFSeekableStream.h" +#include "config.h" + +#include -#import "OFNotImplementedException.h" +#import "OFSeekableStream.h" @implementation OFSeekableStream - (void)lowlevelSeekToOffset: (off_t)offset whence: (int)whence { - @throw [OFNotImplementedException exceptionWithClass: [self class] - selector: _cmd]; + [self doesNotRecognizeSelector: _cmd]; + abort(); } - (void)seekToOffset: (off_t)offset whence: (int)whence {