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 */