/* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS system libraries * PURPOSE: Implementation of _chkstk and _alloca_probe * FILE: lib/sdk/crt/math/amd64/chkstk_asm.s * PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org) */ /* INCLUDES ******************************************************************/ #include .intel_syntax noprefix .global MsgUnimplemented MsgUnimplemented: .asciz "WARNING: %s at %s:%d is UNIMPLEMENTED!\n" .proc _chkstk UNIMPLEMENTED chkstk ret .endp .proc _alloca_probe UNIMPLEMENTED alloca_probe ret .endp /* EOF */