- removed stray "overload" modifiers in the implementation for strcopy and

strlcopy (only existed for generic and i386 versions)

git-svn-id: trunk@19488 -
This commit is contained in:
Jonas Maebe 2011-10-15 11:40:16 +00:00
parent e13a6d9999
commit c7b83717cb
2 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@
{$ifndef FPC_UNIT_HAS_STRCOPY}
{$define FPC_UNIT_HAS_STRCOPY}
function strcopy(dest,source : pchar) : pchar;assembler;overload;
function strcopy(dest,source : pchar) : pchar;assembler;
var
saveeax,saveesi,saveedi : longint;
asm
@ -119,7 +119,7 @@ end;
{$ifndef FPC_UNIT_HAS_STRLCOPY}
{$define FPC_UNIT_HAS_STRLCOPY}
function strlcopy(dest,source : pchar;maxlen : sizeint) : pchar;assembler;overload;
function strlcopy(dest,source : pchar;maxlen : sizeint) : pchar;assembler;
var
savedest,
saveesi,saveedi : longint;

View File

@ -26,7 +26,7 @@
{$ifndef FPC_UNIT_HAS_STRCOPY}
Function StrCopy(Dest, Source:PChar): PChar;overload;
Function StrCopy(Dest, Source:PChar): PChar;
var
counter : SizeInt;
Begin
@ -217,7 +217,7 @@
{$ifndef FPC_UNIT_HAS_STRLCOPY}
Function StrLCopy(Dest,Source: PChar; MaxLen: SizeInt): PChar;overload;
Function StrLCopy(Dest,Source: PChar; MaxLen: SizeInt): PChar;
var
counter: SizeInt;
Begin