diff options
author | Earnie Boyd <earnie@users.sf.net> | 2001-01-16 16:43:00 +0000 |
---|---|---|
committer | Earnie Boyd <earnie@users.sf.net> | 2001-01-16 16:43:00 +0000 |
commit | 2762a243028abc5a150cd55109698eccdb57e64c (patch) | |
tree | 36c8b72a6e29ede72f18e05ba9d5b5d9129ecc2d | |
parent | 49a5f0809b0d6a1a2773f724258da817e81f3f2e (diff) | |
download | cygnal-2762a243028abc5a150cd55109698eccdb57e64c.tar.gz cygnal-2762a243028abc5a150cd55109698eccdb57e64c.tar.bz2 cygnal-2762a243028abc5a150cd55109698eccdb57e64c.zip |
* include/stdlib.h: Apply Danny Smith patch 102730
2000-12-09 Danny Smith <danny_r_smith_2001@yahoo.co.nz>
(_wgetenv) Correction to return type.
-rw-r--r-- | winsup/mingw/ChangeLog | 6 | ||||
-rw-r--r-- | winsup/mingw/include/stdlib.h | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog index 6ae59917f..53b7e71e7 100644 --- a/winsup/mingw/ChangeLog +++ b/winsup/mingw/ChangeLog @@ -1,4 +1,10 @@ +Tue Jan 16 11:37:31 2001 Earnie Boyd <earnie@users.sourceforge.net> + + * include/stdlib.h: Apply Danny Smith patch 102730 + 2000-12-09 Danny Smith <danny_r_smith_2001@yahoo.co.nz> + (_wgetenv) Correction to return type. + Tue Jan 16 09:41:41 2001 Earnie Boyd <earnie@users.sourceforge.net> * include/locale.h: Apply Danny Smith patch 101834 diff --git a/winsup/mingw/include/stdlib.h b/winsup/mingw/include/stdlib.h index 31a00cf9f..71593de42 100644 --- a/winsup/mingw/include/stdlib.h +++ b/winsup/mingw/include/stdlib.h @@ -359,8 +359,8 @@ __int64 _wtoi64(const wchar_t *); wchar_t* _i64tow(__int64, wchar_t *, int); wchar_t* _ui64tow(unsigned __int64, wchar_t *, int); -int _wgetenv(const wchar_t*); -int _wputenv(const wchar_t*); +wchar_t* _wgetenv(const wchar_t*); +int _wputenv(const wchar_t*); void _wsearchenv(const wchar_t*, const wchar_t*, wchar_t*); void _wmakepath(wchar_t*, const wchar_t*, const wchar_t*, const wchar_t*, const wchar_t*); void _wsplitpath (const wchar_t*, wchar_t*, wchar_t*, wchar_t*, wchar_t*); |