Index: src/OFFile.h ================================================================== --- src/OFFile.h +++ src/OFFile.h @@ -218,11 +218,11 @@ @end #ifdef __cplusplus extern "C" { #endif -extern OFFile *of_stdin; -extern OFFile *of_stdout; -extern OFFile *of_stderr; +extern OFStream *of_stdin; +extern OFStream *of_stdout; +extern OFStream *of_stderr; #ifdef __cplusplus } #endif Index: src/OFFile.m ================================================================== --- src/OFFile.m +++ src/OFFile.m @@ -86,13 +86,13 @@ #endif #define DEFAULT_MODE S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH #define DIR_MODE DEFAULT_MODE | S_IXUSR | S_IXGRP | S_IXOTH -OFFile *of_stdin = nil; -OFFile *of_stdout = nil; -OFFile *of_stderr = nil; +OFStream *of_stdin = nil; +OFStream *of_stdout = nil; +OFStream *of_stderr = nil; #if defined(OF_THREADS) && !defined(_WIN32) static OFMutex *mutex; #endif