2005-01-13 Zoltan Varga <vargaz@freemail.hu>
authorZoltan Varga <vargaz@gmail.com>
Thu, 13 Jan 2005 20:25:00 +0000 (20:25 -0000)
committerZoltan Varga <vargaz@gmail.com>
Thu, 13 Jan 2005 20:25:00 +0000 (20:25 -0000)
* jni.c: Fix compilation on PPC.

svn path=/trunk/mono/; revision=38892

ikvm-native/ChangeLog
ikvm-native/jni.c

index b50d4e94b0da7e29525fa2b596074cc39ed3f961..fd068dc14c06fbd6c529fa681a9aa3ca04b78c9c 100644 (file)
@@ -1,5 +1,7 @@
 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
 
+       * jni.c: Fix compilation on PPC.
+
        * Makefile.am os.c jni.h jni.c: New files. This is a copy of the
        'native' module in IKVM CVS, placed here so IKVM users don't need to
        copy/install the native library.
index 33c78bec2a065f502065c5a30f53cb81104662ad..4690feda42c58986ebc55af784d40df954e4c67e 100644 (file)
   
 */
 #include <stdarg.h>
-#include <malloc.h>
 #include "jni.h"
 
 #ifdef _WIN32
+#include <malloc.h>
 #define ALLOCA _alloca
 #else
 #include <alloca.h>