diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2002-10-03 00:51:25 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2002-10-03 00:51:25 +0000 |
commit | 3073f3f29d99063621db1a9095053b9eb3275e8b (patch) | |
tree | aa7b101676dc84d48f51297a85eaa25045ea1691 | |
parent | 7c3de623b662e2dc389c005022fa59f4df626cce (diff) | |
download | newlib-3073f3f29d99063621db1a9095053b9eb3275e8b.zip newlib-3073f3f29d99063621db1a9095053b9eb3275e8b.tar.gz newlib-3073f3f29d99063621db1a9095053b9eb3275e8b.tar.bz2 |
* include/cytpe.h (_imp____mbcur_max): Add missing ';'.
(_imp____mbcur_max_dll): Likewise.
-rw-r--r-- | winsup/mingw/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/mingw/include/ctype.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog index a52b75e..ad349dd 100644 --- a/winsup/mingw/ChangeLog +++ b/winsup/mingw/ChangeLog @@ -1,5 +1,10 @@ 2002-10-03 Danny Smith <dannysmith@users.sourceforge.net> + * include/cytpe.h (_imp____mbcur_max): Add missing ';'. + (_imp____mbcur_max_dll): Likewise. + +2002-10-03 Danny Smith <dannysmith@users.sourceforge.net> + * include/fcntl.h (_fmode): Remove declarations and compatibility defines. (_setmode, setmode): Remove prototypes. diff --git a/winsup/mingw/include/ctype.h b/winsup/mingw/include/ctype.h index 35a577b..3e553cc 100644 --- a/winsup/mingw/include/ctype.h +++ b/winsup/mingw/include/ctype.h @@ -106,10 +106,10 @@ int _toupper(int); #else /* ! __DECLSPEC_SUPPORTED */ # ifdef __MSVCRT__ - extern int* _imp____mbcur_max + extern int* _imp____mbcur_max; # define MB_CUR_MAX (*_imp____mb_cur_max) # else /* not __MSVCRT */ - extern int* _imp____mbcur_max_dll + extern int* _imp____mbcur_max_dll; # define MB_CUR_MAX (*_imp____mb_cur_max_dll) # endif /* not __MSVCRT */ #endif /* __DECLSPEC_SUPPORTED */ |