/* $Id$ */ /* tmpfile( void ) This file is part of the Public Domain C Library (PDCLib). Permission is granted to use, modify, and / or redistribute at will. */ #include #ifndef REGTEST #include #include <_PDCLIB_glue.h> extern struct _PDCLIB_file_t * _PDCLIB_filelist; /* This is a stub implementation of tmpfile */ struct _PDCLIB_file_t * tmpfile( void ) { errno = ENOTSUP; return 1; } #endif #ifdef TEST #include <_PDCLIB_test.h> #include int main( void ) { return TEST_RESULTS; } #endif