X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=functions%2Fstdio%2Ffopen.c;h=3bbab78c53f67b34911bd927f99093ed85b9f4b6;hp=fa0185f9f320b781c3dbff0565d3e08425eed0de;hb=d865c4403fc91d1f1ac95ba76febcee9f429bb97;hpb=2040228f27d623585d339dec175c4e779ca9edb5 diff --git a/functions/stdio/fopen.c b/functions/stdio/fopen.c index fa0185f..3bbab78 100644 --- a/functions/stdio/fopen.c +++ b/functions/stdio/fopen.c @@ -8,7 +8,9 @@ #include #ifndef REGTEST + #include "_PDCLIB_glue.h" + #include extern struct _PDCLIB_file_t * _PDCLIB_filelist; @@ -35,7 +37,7 @@ struct _PDCLIB_file_t * fopen( const char * _PDCLIB_restrict filename, const cha /* no memory */ return NULL; } - if ( ( rc->status = _PDCLIB_filemode( mode ) ) == 0 ) + if ( ( rc->status = _PDCLIB_filemode( mode ) ) == 0 ) { /* invalid mode */ free( rc ); @@ -73,6 +75,7 @@ struct _PDCLIB_file_t * fopen( const char * _PDCLIB_restrict filename, const cha #endif #ifdef TEST + #include "_PDCLIB_test.h" int main( void )