X-Git-Url: https://pd.if.org/git/?p=pdclib.old;a=blobdiff_plain;f=platform%2Fexample%2Ffunctions%2Fstdio%2Ftmpfile.c;h=255a35eb75721d58d352cd1279a1dd7f3fdda622;hp=79c9569c50f912b7ae5a6c6530fc3c871c29cf12;hb=0d54a75af25ca44411e7c4190cc2a93a390e61a2;hpb=18af9d0a4cd252433e0cbd5daf4640e325c9d0ab 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>