diff options
author | Earnie Boyd <earnie@users.sf.net> | 2001-08-05 12:52:43 +0000 |
---|---|---|
committer | Earnie Boyd <earnie@users.sf.net> | 2001-08-05 12:52:43 +0000 |
commit | 386abb05d958a410c90cd4b7ea25187c7f6f1fbc (patch) | |
tree | a5b10c51305a694eb1de46a09a9cd7a2b5bee517 /winsup/mingw/include/stdlib.h | |
parent | 54580e6a88d640e3fdc41a00c152cf773dfaba34 (diff) | |
download | cygnal-386abb05d958a410c90cd4b7ea25187c7f6f1fbc.tar.gz cygnal-386abb05d958a410c90cd4b7ea25187c7f6f1fbc.tar.bz2 cygnal-386abb05d958a410c90cd4b7ea25187c7f6f1fbc.zip |
* include/stdlib.h (_wpgmptr): Don't declare ifndef __MSVCRT__.
* include/stdio.h (_IORW): Change constant to 0x0080.
(TMP_MAX): Add new define.
(_P_tmpdir): Ditto.
(_wP_tmpdir): Ditto.
(L_tmpnam): Change constant to 16.
* include/malloc.h: Fix non-ANSI comment after #endif.
* profile/Makefile.in (mkinstalldirs): Correct relative path.
Diffstat (limited to 'winsup/mingw/include/stdlib.h')
-rw-r--r-- | winsup/mingw/include/stdlib.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/winsup/mingw/include/stdlib.h b/winsup/mingw/include/stdlib.h index 64d8867d7..9bae20c31 100644 --- a/winsup/mingw/include/stdlib.h +++ b/winsup/mingw/include/stdlib.h @@ -263,14 +263,11 @@ wchar_t** __p__wpgmptr(void); # ifndef __DECLSPEC_SUPPORTED extern char** __imp__pgmptr_dll; # define _pgmptr (*__imp__pgmptr_dll) - extern wchar_t** __imp_wpgmptr_dll; -# define _wpgmptr (*__imp__wpgmptr_dll) # else /* __DECLSPEC_SUPPORTED */ __MINGW_IMPORT char* _pgmptr_dll; # define _pgmptr _pgmptr_dll - __MINGW_IMPORT wchar_t* _wpgmptr_dll; -# define _wpgmptr _wpgmptr_dll # endif /* __DECLSPEC_SUPPORTED */ +/* no wide version in CRTDLL */ #endif /* __MSVCRT__ */ #endif /* Not __STRICT_ANSI__ */ |