mirror of
https://github.com/reactos/reactos.git
synced 2025-04-19 12:08:55 +00:00

Some old names redirect to functions that are not exported by ucrtbase. Place them into a seperate asm file, so that they don't get pulled in, when any of the other ones is referenced.
18 lines
539 B
ArmAsm
18 lines
539 B
ArmAsm
|
|
#include <alias.inc>
|
|
|
|
// These exports only exist in msvcrt.dll, not in ucrtbase.dll
|
|
// Do not remove indentation, this would break ARM build!
|
|
CREATE_ALIAS2 daylight, _daylight
|
|
CREATE_ALIAS snprintf, _snprintf
|
|
CREATE_ALIAS strcmpi, _strcmpi
|
|
CREATE_ALIAS2 timezone, _timezone
|
|
CREATE_ALIAS2 tzname, _tzname
|
|
|
|
// C99 functions (already properly exported in ucrtbase.dll))
|
|
CREATE_ALIAS cabs, _cabs
|
|
CREATE_ALIAS hypot, _hypot
|
|
CREATE_ALIAS logb, _logb
|
|
CREATE_ALIAS nextafter, _nextafter
|
|
|
|
END
|