From 2762a243028abc5a150cd55109698eccdb57e64c Mon Sep 17 00:00:00 2001 From: Earnie Boyd Date: Tue, 16 Jan 2001 16:43:00 +0000 Subject: [PATCH] * include/stdlib.h: Apply Danny Smith patch 102730 2000-12-09 Danny Smith (_wgetenv) Correction to return type. --- winsup/mingw/ChangeLog | 6 ++++++ 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 + + * include/stdlib.h: Apply Danny Smith patch 102730 + 2000-12-09 Danny Smith + (_wgetenv) Correction to return type. + Tue Jan 16 09:41:41 2001 Earnie Boyd * 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*);