]> pd.if.org Git - pdclib/blob - platform/example/functions/stdio/tmpfile.c
Added any files yet missing for stdio.h.
[pdclib] / platform / example / functions / stdio / tmpfile.c
1 /* $Id$ */
2
3 /* tmpfile( void )
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 #ifndef REGTEST
10 #include <_PDCLIB_int.h>
11
12 struct _PDCLIB_file_t * tmpfile( void )
13 {
14     /* TODO: Implement */
15     return NULL;
16 }
17
18 #endif REGTEST
19
20 #ifdef TEST
21 #include <_PDCLIB_test.h>
22
23 int main()
24 {
25     TESTCASE( NO_TESTDRIVER );
26     return TEST_RESULTS;
27 }
28
29 #endif