mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 13:26:17 +00:00
[CRT]
Add frame pointer omission info to strcpy and wcscpy svn path=/trunk/; revision=53438
This commit is contained in:
parent
7ac15bc029
commit
01e8867ed1
1 changed files with 4 additions and 1 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue