* include/stdlib.h (_imp____mbcur_max): add missing ';'.
(_imp____mbcur_max_dll): Likewise.
This commit is contained in:
parent
c3802bc05a
commit
516658560f
|
@ -1,3 +1,8 @@
|
||||||
|
2002-10-02 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
|
* include/stdlib.h (_imp____mbcur_max): add missing ';'.
|
||||||
|
(_imp____mbcur_max_dll): Likewise.
|
||||||
|
|
||||||
2002-09-18 Danny Smith <dannysmith@users.sourceforge.net>
|
2002-09-18 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
* mingwex/math/files.txt: Remove inadvertantly added file.
|
* mingwex/math/files.txt: Remove inadvertantly added file.
|
||||||
|
|
|
@ -134,10 +134,10 @@ __MINGW_IMPORT char** __argv_dll;
|
||||||
|
|
||||||
#else /* ! __DECLSPEC_SUPPORTED */
|
#else /* ! __DECLSPEC_SUPPORTED */
|
||||||
# ifdef __MSVCRT__
|
# ifdef __MSVCRT__
|
||||||
extern int* _imp____mbcur_max
|
extern int* _imp____mbcur_max;
|
||||||
# define MB_CUR_MAX (*_imp____mb_cur_max)
|
# define MB_CUR_MAX (*_imp____mb_cur_max)
|
||||||
# else /* not __MSVCRT */
|
# else /* not __MSVCRT */
|
||||||
extern int* _imp____mbcur_max_dll
|
extern int* _imp____mbcur_max_dll;
|
||||||
# define MB_CUR_MAX (*_imp____mb_cur_max_dll)
|
# define MB_CUR_MAX (*_imp____mb_cur_max_dll)
|
||||||
# endif /* not __MSVCRT */
|
# endif /* not __MSVCRT */
|
||||||
#endif /* __DECLSPEC_SUPPORTED */
|
#endif /* __DECLSPEC_SUPPORTED */
|
||||||
|
|
Loading…
Reference in New Issue