Sync with trunk (48237)
[reactos.git] / lib / sdk / crt / except / amd64 / chkstk_asm.s
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS system libraries
4 * PURPOSE: Implementation of _chkstk and _alloca_probe
5 * FILE: lib/sdk/crt/math/amd64/chkstk_asm.s
6 * PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
7 */
8
9 /* INCLUDES ******************************************************************/
10
11 #include <reactos/asm.h>
12
13 .intel_syntax noprefix
14
15 .global MsgUnimplemented
16 MsgUnimplemented:
17 .asciz "WARNING: %s at %s:%d is UNIMPLEMENTED!\n"
18
19
20 .proc _chkstk
21 UNIMPLEMENTED chkstk
22 ret
23 .endp
24
25 .proc _alloca_probe
26 UNIMPLEMENTED alloca_probe
27 ret
28 .endp
29
30 /* EOF */