Make compilable under linux
authorStefan Vogel <sv@exept.de>
Wed, 20 Jun 2007 16:44:36 +0200
changeset 10616 9a49511f6516
parent 10615 349ffa5ea6d1
child 10617 a9dc57b77568
Make compilable under linux
ExternalFunctionCallback.st
--- a/ExternalFunctionCallback.st	Fri Jun 15 12:05:23 2007 +0200
+++ b/ExternalFunctionCallback.st	Wed Jun 20 16:44:36 2007 +0200
@@ -21,6 +21,8 @@
 !ExternalFunctionCallback primitiveDefinitions!
 %{
 
+#include <stdio.h>
+
 #ifdef HAVE_FFI
 # include <ffi.h>
 # define MAX_ARGS    128
@@ -681,5 +683,5 @@
 !ExternalFunctionCallback class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ExternalFunctionCallback.st,v 1.5 2007-06-14 09:41:53 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ExternalFunctionCallback.st,v 1.6 2007-06-20 14:44:36 stefan Exp $'
 ! !