X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=platform%2Fexample_cygwin%2Ffunctions%2Fstdio%2Ftmpnam.c;fp=platform%2Fexample_cygwin%2Ffunctions%2Fstdio%2Ftmpnam.c;h=0000000000000000000000000000000000000000;hb=9491125d4e428b554cae97c70d4cd824f4e9bd41;hp=c4a0a4d968402848ae28bdde0e48d809caecb028;hpb=8024ab6eb8c841b330458354788d7f3a86bee7dd;p=pdclib diff --git a/platform/example_cygwin/functions/stdio/tmpnam.c b/platform/example_cygwin/functions/stdio/tmpnam.c deleted file mode 100644 index c4a0a4d..0000000 --- a/platform/example_cygwin/functions/stdio/tmpnam.c +++ /dev/null @@ -1,31 +0,0 @@ -/* $Id$ */ - -/* tmpnam( char * ) - - This file is part of the Public Domain C Library (PDCLib). - Permission is granted to use, modify, and / or redistribute at will. -*/ - -#include -#include - -#ifndef REGTEST - -char * tmpnam( char * s ) -{ - /* TODO: Implement. */ - return NULL; -} - -#endif - -#ifdef TEST -#include <_PDCLIB_test.h> - -int main( void ) -{ - TESTCASE( NO_TESTDRIVER ); - return TEST_RESULTS; -} - -#endif