From 01e8867ed1fc27abe8d3d594dee222a9ed4826ef Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Thu, 25 Aug 2011 09:25:26 +0000 Subject: [PATCH] [CRT] Add frame pointer omission info to strcpy and wcscpy svn path=/trunk/; revision=53438 --- reactos/lib/sdk/crt/string/i386/tcscpy.inc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/reactos/lib/sdk/crt/string/i386/tcscpy.inc b/reactos/lib/sdk/crt/string/i386/tcscpy.inc index b16b4ccea32..e5ebd5ff4d8 100644 --- a/reactos/lib/sdk/crt/string/i386/tcscpy.inc +++ b/reactos/lib/sdk/crt/string/i386/tcscpy.inc @@ -7,9 +7,11 @@ PUBLIC _tcscpy .code -_tcscpy: +FUNC tcscpy + FPO 0, 2, 2, 2, 0, FRAME_FPO push esi push edi + mov edi, [esp + 12] mov esi, [esp + 16] cld @@ -25,6 +27,7 @@ _tcscpy: pop edi pop esi ret +ENDFUNC tcscpy END /* EOF */