Index: file.c
===================================================================
--- file.c	(revision 40)
+++ file.c	(revision 41)
@@ -46,9 +46,9 @@
 
 }
 
-#ifdef PHP_SUPPORT
 FILE *raydium_file_fopen(char *file, char *mode)
 {
+#ifdef PHP_SUPPORT
 FILE *fp;
 int i;
 char found=0;
@@ -80,10 +80,10 @@
 fp=fopen(file,mode);
 
 return fp;
-}
 #else
-#define raydium_file_fopen fopen
+return fopen(file,mode);
 #endif
+}
 
 void dump_vertex_to(char *filename)
 {