- removed darwin-specific external name for printf, no longer required after

r16330

git-svn-id: trunk@16331 -
This commit is contained in:
Jonas Maebe 2010-11-12 22:08:15 +00:00
parent 2003c2af70
commit dbfcb2d5b8

View File

@ -20,13 +20,8 @@ const
int64prefix='I64';
{$else}
{$linklib c}
{$ifndef darwin}
procedure printf(const formatstr : pchar; ...); external;
procedure sprintf(p : pchar;const formatstr : pchar; ...); external;
{$else darwin}
procedure printf(const formatstr : pchar; ...); external name '_printf';
procedure sprintf(p : pchar;const formatstr : pchar; ...); external name '_sprintf';
{$endif darwin}
const
int64prefix='ll';
{$endif}