OSDN Git Service

2007-02-27 Thorsten Dahlheimer <tdahlheim@gmx.net>
authordannysmith <dannysmith>
Tue, 27 Feb 2007 07:40:12 +0000 (07:40 +0000)
committerdannysmith <dannysmith>
Tue, 27 Feb 2007 07:40:12 +0000 (07:40 +0000)
* include/stdio.h (_unlink, unlink): Add prototypes.

winsup/mingw/ChangeLog
winsup/mingw/include/stdio.h

index 874bae3..5e8c293 100644 (file)
@@ -1,3 +1,7 @@
+2007-02-27  Thorsten Dahlheimer  <tdahlheim@gmx.net>
+
+       * include/stdio.h (_unlink, unlink): Add prototypes.
+
 2007-02-18  Aurimas Cernius  <aurisc4@gmail.com>
 
        * include/excpt.h: Replace "_try1" in comments  with "__try1".
index bc40f58..23914a3 100644 (file)
@@ -178,11 +178,13 @@ _CRTIMP char* __cdecl     tmpnam (char*);
 
 #ifndef __STRICT_ANSI__
 _CRTIMP char* __cdecl  _tempnam (const char*, const char*);
-_CRTIMP int  __cdecl    _rmtmp(void);
+_CRTIMP int __cdecl    _rmtmp(void);
+_CRTIMP int __cdecl    _unlink (const char*);
 
 #ifndef        NO_OLDNAMES
 _CRTIMP char* __cdecl  tempnam (const char*, const char*);
-_CRTIMP int __cdecl     rmtmp(void);
+_CRTIMP int __cdecl    rmtmp(void);
+_CRTIMP int __cdecl    unlink (const char*);
 #endif
 #endif /* __STRICT_ANSI__ */