Merge MinGW changes
This commit is contained in:
parent
d4b5d8fda2
commit
be4ee22bbc
|
@ -19,6 +19,16 @@
|
||||||
|
|
||||||
* include/tchar.h (_TCHAR): Add typedefs.
|
* include/tchar.h (_TCHAR): Add typedefs.
|
||||||
|
|
||||||
|
2002-01-16 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
|
* include/stdlib.h (_onexit_t): Add typedef.
|
||||||
|
(_onexit): Add prototype.
|
||||||
|
|
||||||
|
2002-01-12 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
|
* msvcrt.def: Revert accidental change.
|
||||||
|
* include/stdlib.h: Ditto.
|
||||||
|
|
||||||
2001-12-07 Earnie Boyd <earnie@users.sf.net>
|
2001-12-07 Earnie Boyd <earnie@users.sf.net>
|
||||||
|
|
||||||
* Makefile.in: Increment VERSION.
|
* Makefile.in: Increment VERSION.
|
||||||
|
|
|
@ -349,6 +349,10 @@ void _sleep (unsigned long);
|
||||||
|
|
||||||
void _exit (int) _ATTRIB_NORETURN;
|
void _exit (int) _ATTRIB_NORETURN;
|
||||||
|
|
||||||
|
/* _onexit is MS extension. Use atexit for portability. */
|
||||||
|
typedef int (* _onexit_t)(void);
|
||||||
|
_onexit_t _onexit( _onexit_t );
|
||||||
|
|
||||||
int _putenv (const char*);
|
int _putenv (const char*);
|
||||||
void _searchenv (const char*, const char*, char*);
|
void _searchenv (const char*, const char*, char*);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue