]> sourceware.org Git - newlib-cygwin.git/commitdiff
* include/stdlib.h: Apply Danny Smith patch 102730
authorEarnie Boyd <earnie@users.sf.net>
Tue, 16 Jan 2001 16:43:00 +0000 (16:43 +0000)
committerEarnie Boyd <earnie@users.sf.net>
Tue, 16 Jan 2001 16:43:00 +0000 (16:43 +0000)
2000-12-09  Danny Smith  <danny_r_smith_2001@yahoo.co.nz>
(_wgetenv) Correction to return type.

winsup/mingw/ChangeLog
winsup/mingw/include/stdlib.h

index 6ae59917fae01cf9927b0881e838e67987bbf01f..53b7e71e793461ee75d89d18cefda67bfb09c8da 100644 (file)
@@ -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
index 31a00cf9fbb9d62140916d1a0ca4d76967ba20a1..71593de42be52214535bc437736b328c6cebd700 100644 (file)
@@ -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*);
This page took 0.03212 seconds and 5 git commands to generate.