* Removed inttostr, isvalidident so sysutils versions are used.

git-svn-id: trunk@6984 -
This commit is contained in:
michael 2007-03-24 22:11:03 +00:00
parent 8b9b6130d9
commit f60fbbb01b

View File

@ -11,19 +11,6 @@
**********************************************************************}
Function IntToStr (I : Longint) : String;
begin
Str(I,Result);
end;
function IsValidIdent(const Ident: string): Boolean;
begin
Result:=True;
end;
procedure BinToHex(BinValue, HexValue: PChar; BinBufSize: Integer);
Const
HexDigits='0123456789ABCDEF';