]> pd.if.org Git - pdclib/blobdiff - platform/win32/functions/stdio/tmpfile.c
Missing declarations / definitions added to stdlib.h.
[pdclib] / platform / win32 / functions / stdio / tmpfile.c
index 1b3b4bab9b6886b7b5db8493825b34ca610d1618..c4b09761d13c3ba3e99624375b8d0767b75fbe9a 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* tmpfile( void )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -19,7 +17,7 @@ static char tmpname_prefix[4] = {0, 0, 0, 0};
 extern const _PDCLIB_fileops_t _PDCLIB_fileops;
 extern void _PDCLIB_w32errno( void );
 
-struct _PDCLIB_file_t * tmpfile( void )
+FILE* tmpfile( void )
 {
     if(!tmpname_prefix[0]) {
         char namebuf[MAX_PATH+1];