]> pd.if.org Git - pdclib/blob - platform/example_cygwin/functions/stdio/tmpnam.c
Almost done on tmpfile / tmpnam.
[pdclib] / platform / example_cygwin / functions / stdio / tmpnam.c
1 /* $Id$ */
2
3 /* tmpnam( char * )
4
5    This file is part of the Public Domain C Library (PDCLib).
6    Permission is granted to use, modify, and / or redistribute at will.
7 */
8
9 #include <stdio.h>
10 #include <stdarg.h>
11
12 #ifndef REGTEST
13
14 char * tmpnam( char * s )
15 {
16     /* TODO: Implement. */
17     return NULL;
18 }
19
20 #endif
21
22 #ifdef TEST
23 #include <_PDCLIB_test.h>
24
25 int main( void )
26 {
27     TESTCASE( NO_TESTDRIVER );
28     return TEST_RESULTS;
29 }
30
31 #endif