]> pd.if.org Git - pdclib/blob - platform/example/functions/stdio/tmpfile.c
94351caad147da0ce6bf2c498906f5dd9eeb5fb2
[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 #include <stdio.h>
10
11 #ifndef REGTEST
12
13 #include <errno.h>
14 #include <_PDCLIB_glue.h>
15
16 /* This is a stub implementation of tmpfile
17 */
18 FILE* tmpfile( void )
19 {
20     errno = ENOTSUP;
21     return NULL;
22 }
23
24 #endif
25
26 #ifdef TEST
27 #include <_PDCLIB_test.h>
28 #include <string.h>
29
30 int main( void )
31 {
32     return TEST_RESULTS;
33 }
34
35 #endif
36