2007-02-27 Thorsten Dahlheimer <tdahlheim@gmx.net>

* include/stdio.h (_unlink, unlink): Add prototypes.
This commit is contained in:
Danny Smith 2007-02-27 07:40:12 +00:00
parent 139654836c
commit cbf4bfcd5b
2 changed files with 8 additions and 2 deletions

View 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".

View 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__ */