2011-05-22 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
* include/stdlib.h (_rotl, _lrotl, _rotr, _lrotr): Resolve conflict with gcc by wrapping the functions in brackets. Thanks to Kai Tietz for the report.
This commit is contained in:
parent
7944431097
commit
ec05c53dde
|
@ -1,3 +1,10 @@
|
||||||
|
2011-05-22 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
|
||||||
|
|
||||||
|
* include/stdlib.h (_rotl, _lrotl, _rotr, _lrotr): Resolve conflict with gcc
|
||||||
|
by wrapping the functions in brackets.
|
||||||
|
|
||||||
|
Thanks to Kai Tietz for the report.
|
||||||
|
|
||||||
2011-05-22 A.B., Khalid <abkhd@users.sourceforge.net>
|
2011-05-22 A.B., Khalid <abkhd@users.sourceforge.net>
|
||||||
|
|
||||||
* Makefile.in: Add support for msvcr100.dll.
|
* Makefile.in: Add support for msvcr100.dll.
|
||||||
|
|
|
@ -440,10 +440,10 @@ _CRTIMP __int64 __cdecl __MINGW_NOTHROW _wtoi64(const wchar_t *);
|
||||||
_CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _i64tow(__int64, wchar_t *, int);
|
_CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _i64tow(__int64, wchar_t *, int);
|
||||||
_CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _ui64tow(unsigned __int64, wchar_t *, int);
|
_CRTIMP wchar_t* __cdecl __MINGW_NOTHROW _ui64tow(unsigned __int64, wchar_t *, int);
|
||||||
|
|
||||||
_CRTIMP unsigned int __cdecl __MINGW_NOTHROW _rotl(unsigned int, int) __MINGW_ATTRIB_CONST;
|
_CRTIMP unsigned int __cdecl __MINGW_NOTHROW (_rotl)(unsigned int, int) __MINGW_ATTRIB_CONST;
|
||||||
_CRTIMP unsigned int __cdecl __MINGW_NOTHROW _rotr(unsigned int, int) __MINGW_ATTRIB_CONST;
|
_CRTIMP unsigned int __cdecl __MINGW_NOTHROW (_rotr)(unsigned int, int) __MINGW_ATTRIB_CONST;
|
||||||
_CRTIMP unsigned long __cdecl __MINGW_NOTHROW _lrotl(unsigned long, int) __MINGW_ATTRIB_CONST;
|
_CRTIMP unsigned long __cdecl __MINGW_NOTHROW (_lrotl)(unsigned long, int) __MINGW_ATTRIB_CONST;
|
||||||
_CRTIMP unsigned long __cdecl __MINGW_NOTHROW _lrotr(unsigned long, int) __MINGW_ATTRIB_CONST;
|
_CRTIMP unsigned long __cdecl __MINGW_NOTHROW (_lrotr)(unsigned long, int) __MINGW_ATTRIB_CONST;
|
||||||
|
|
||||||
_CRTIMP int __cdecl __MINGW_NOTHROW _set_error_mode (int);
|
_CRTIMP int __cdecl __MINGW_NOTHROW _set_error_mode (int);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue