Browse Source

* fixed non wince execution

git-svn-id: trunk@4859 -
florian 19 years ago
parent
commit
c0336595b6
1 changed files with 1 additions and 2 deletions
  1. 1 2
      tests/test/cg/tprintf.pp

+ 1 - 2
tests/test/cg/tprintf.pp

@@ -11,10 +11,9 @@ const
 {$ifdef wince}
   CrtLib = 'coredll.dll';
 {$else}
-  CrtLib = 'coredll.dll';
+  CrtLib = 'msvcrt.dll';
 {$endif}
 
-{ $linklib msvcrt}
 procedure printf(const formatstr : pchar; const args : array of const);cdecl; external CrtLib name 'printf';
 procedure sprintf(p : pchar;const formatstr : pchar; const args : array of const);cdecl; external CrtLib name 'sprintf';
 const