mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
c345f7f137
This fixes link errors with MsgUnimplemented not defined on binaries not linking to CRT.
30 lines
662 B
ArmAsm
30 lines
662 B
ArmAsm
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* PURPOSE: Implementation of _chkstk and _alloca_probe
|
|
* FILE: lib/sdk/crt/except/amd64/chkstk_asm.s
|
|
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
|
|
*/
|
|
|
|
/* INCLUDES ******************************************************************/
|
|
|
|
#include <asm.inc>
|
|
|
|
/* CODE **********************************************************************/
|
|
.code64
|
|
|
|
FUNC __chkstk
|
|
.endprolog
|
|
UNIMPLEMENTED chkstk
|
|
ret
|
|
ENDFUNC
|
|
|
|
FUNC __alloca_probe
|
|
.endprolog
|
|
UNIMPLEMENTED alloca_probe
|
|
ret
|
|
ENDFUNC
|
|
|
|
END
|
|
/* EOF */
|