]> pd.if.org Git - pdclib/blobdiff - functions/stdio/tmpnam.c
Whitespace cleanups.
[pdclib] / functions / stdio / tmpnam.c
index 276a42c275be61906fb60ea97f7bd998db6f0c17..6b444cea2877f2f6c49b80f8a6148098413b4f73 100644 (file)
@@ -8,9 +8,10 @@
 
 #ifndef REGTEST
 
-#include <string.h>
 #include "_PDCLIB_glue.h"
 
+#include <string.h>
+
 char * tmpnam( char * s )
 {
     static char filename[ L_tmpnam ];
@@ -27,6 +28,7 @@ char * tmpnam( char * s )
 #endif
 
 #ifdef TEST
+
 #include "_PDCLIB_test.h"
 
 #include <string.h>
@@ -38,4 +40,3 @@ int main( void )
 }
 
 #endif
-