X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=platform%2Fexample%2Ffunctions%2Fstdio%2Ftmpfile.c;h=255a35eb75721d58d352cd1279a1dd7f3fdda622;hp=79c9569c50f912b7ae5a6c6530fc3c871c29cf12;hb=393020b6e48719d27699dea6b29e53025bbd5123;hpb=f408c1fd633015089d2a0fc6bc31c9f61eeae0a9 diff --git a/platform/example/functions/stdio/tmpfile.c b/platform/example/functions/stdio/tmpfile.c index 79c9569..255a35e 100644 --- a/platform/example/functions/stdio/tmpfile.c +++ b/platform/example/functions/stdio/tmpfile.c @@ -6,8 +6,9 @@ Permission is granted to use, modify, and / or redistribute at will. */ +#include + #ifndef REGTEST -#include <_PDCLIB_int.h> struct _PDCLIB_file_t * tmpfile( void ) { @@ -15,7 +16,7 @@ struct _PDCLIB_file_t * tmpfile( void ) return NULL; } -#endif REGTEST +#endif #ifdef TEST #include <_PDCLIB_test.h>