]> pd.if.org Git - pdclib/blobdiff - platform/example/functions/stdio/tmpfile.c
Merged branch stdio_rewrite back into trunk.
[pdclib] / platform / example / functions / stdio / tmpfile.c
index 79c9569c50f912b7ae5a6c6530fc3c871c29cf12..255a35eb75721d58d352cd1279a1dd7f3fdda622 100644 (file)
@@ -6,8 +6,9 @@
    Permission is granted to use, modify, and / or redistribute at will.
 */
 
+#include <stdio.h>
+
 #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>