X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstdio%2Ffopen.c;h=fa0185f9f320b781c3dbff0565d3e08425eed0de;hb=3ffa88d3e16e7564ff81bf3650b5afa113caac97;hp=32a66a1fa13053a149e493ae779164cbbd0014d0;hpb=0326491c5ed243ea6efc5e66e3a6ea21427aad92;p=pdclib diff --git a/functions/stdio/fopen.c b/functions/stdio/fopen.c index 32a66a1..fa0185f 100644 --- a/functions/stdio/fopen.c +++ b/functions/stdio/fopen.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* fopen( const char *, const char * ) This file is part of the Public Domain C Library (PDCLib). @@ -10,7 +8,7 @@ #include #ifndef REGTEST -#include <_PDCLIB_glue.h> +#include "_PDCLIB_glue.h" #include extern struct _PDCLIB_file_t * _PDCLIB_filelist; @@ -75,7 +73,7 @@ struct _PDCLIB_file_t * fopen( const char * _PDCLIB_restrict filename, const cha #endif #ifdef TEST -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" int main( void ) { @@ -94,7 +92,7 @@ int main( void ) TESTCASE_NOREG( fopen( testfile, "wr" ) == NULL ); /* Undefined mode */ TESTCASE( ( fh = fopen( testfile, "w" ) ) != NULL ); TESTCASE( fclose( fh ) == 0 ); - remove( testfile ); + TESTCASE( remove( testfile ) == 0 ); return TEST_RESULTS; }