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