xref: /reactos/sdk/lib/crt/except/amd64/chkstk_asm.s (revision c345f7f1)
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/except/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
16FUNC __chkstk
17    .endprolog
18    UNIMPLEMENTED chkstk
19    ret
20ENDFUNC
21
22FUNC __alloca_probe
23    .endprolog
24    UNIMPLEMENTED alloca_probe
25    ret
26ENDFUNC
27
28END
29/* EOF */
30