* Sync up to trunk head (r64894).
[reactos.git] / lib / sdk / crt / except / arm / 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 <asm.inc>
12
13 /* CODE **********************************************************************/
14 .code64
15
16 MsgUnimplemented:
17 .ascii "Unimplemented", CR, LF, NUL
18
19 FUNC __chkstk
20 .endprolog
21 UNIMPLEMENTED chkstk
22 ret
23 ENDFUNC
24
25 FUNC __alloca_probe
26 .endprolog
27 UNIMPLEMENTED alloca_probe
28 ret
29 ENDFUNC
30
31 END
32 /* EOF */