Browse Source

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

git-svn-id: trunk@16331 -

Jonas Maebe 14 years ago
parent
commit
dbfcb2d5b8
1 changed files with 0 additions and 5 deletions
  1. 0 5
      tests/test/cg/uprintf3.pp

+ 0 - 5
tests/test/cg/uprintf3.pp

@@ -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}