@@ -26,25 +26,16 @@ #import "OFSeekableStream.h" @class OFArray; @class OFDate; -#ifdef __cplusplus -extern "C" { -#endif -extern void of_log(OFConstantString*, ...); -#ifdef __cplusplus -} -#endif - /*! * @brief A class which provides functions to read, write and manipulate files. */ @interface OFFile: OFSeekableStream { int _fd; - bool _closable; bool _atEndOfStream; } /*! * @brief Creates a new OFFile with the specified path and mode. @@ -267,28 +258,5 @@ * @param fd A file descriptor, returned from for example open(). * It is not closed when the OFFile object is deallocated! */ - initWithFileDescriptor: (int)fd; @end - -#ifdef __cplusplus -extern "C" { -#endif -/*! @file */ - -/*! - * @brief The standard input stream as an OFStream instance. - */ -extern OFStream *of_stdin; - -/*! - * @brief The standard output stream as an OFStream instance. - */ -extern OFStream *of_stdout; - -/*! - * @brief The standard error stream as an OFStream instance. - */ -extern OFStream *of_stderr; -#ifdef __cplusplus -} -#endif