]> gitweb.factorcode.org Git - factor.git/commitdiff
remove debug code
authorSlava Pestov <slava@factorcode.org>
Tue, 6 Sep 2005 00:34:04 +0000 (00:34 +0000)
committerSlava Pestov <slava@factorcode.org>
Tue, 6 Sep 2005 00:34:04 +0000 (00:34 +0000)
native/unix/ffi.c

index d8e26720376416e1c924d7bebf3c44df73c33eac..c9a195e0a2bef49d8042313d2785182eaf119aa0 100644 (file)
@@ -2,26 +2,6 @@
 
 static void *null_dll;
 
-void ffi_test_1(int x, int y, int z)
-{
-       fprintf(stderr,"%d %d %d\n",x,y,z);
-}
-
-void ffi_test_2(int x, float y, int z)
-{
-       fprintf(stderr,"%d %f %d\n",x,y,z);
-}
-
-int ffi_test_3(int x, int y, int z)
-{
-       return x + y * z;
-}
-
-float ffi_test_4(int x, float y, int z)
-{
-       return x + y * z;
-}
-
 void init_ffi(void)
 {
        null_dll = dlopen(NULL,RTLD_LAZY);