mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 02:19:22 +01:00 
			
		
		
		
	- 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:
		
							parent
							
								
									e13a6d9999
								
							
						
					
					
						commit
						c7b83717cb
					
				@ -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;
 | 
			
		||||
 | 
			
		||||
@ -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
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user