5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
14 #include <_PDCLIB_io.h>
16 char * tmpnam( char * s )
18 static char filename[ L_tmpnam ];
19 FILE * file = tmpfile();
24 strcpy( s, file->filename );
32 #include <_PDCLIB_test.h>
38 TESTCASE( strlen( tmpnam( NULL ) ) < L_tmpnam );