Include unzip.h fixes.
authortwisti <none@none>
Fri, 3 Dec 2004 16:43:53 +0000 (16:43 +0000)
committertwisti <none@none>
Fri, 3 Dec 2004 16:43:53 +0000 (16:43 +0000)
src/vm/loader.c
src/vm/loader.h

index b1af3f5536a752614107eab2a709b568f395d13c..b03c932e96bc9c2dca1e13af606890937016dcff 100644 (file)
@@ -32,7 +32,7 @@
             Edwin Steiner
             Christian Thalinger
 
-   $Id: loader.c 1621 2004-11-30 13:06:55Z twisti $
+   $Id: loader.c 1673 2004-12-03 16:43:53Z twisti $
 
 */
 
@@ -65,7 +65,7 @@
 #include "vm/tables.h"
 
 #if defined(USE_ZLIB)
-#include "vm/unzip.h"
+# include "vm/unzip.h"
 #endif
 
 #include "vm/jit/asmpart.h"
index 56341ea76fa8afc9f74cb4096d09a0817b1a080b..51089359cc9a3768ae7a17a213debd1be5f69aae 100644 (file)
@@ -1,4 +1,4 @@
-/* loader.h - class loader header
+/* vm/loader.h - class loader header
 
    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
    R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser,
@@ -26,7 +26,7 @@
 
    Authors: Reinhard Grafl
 
-   $Id: loader.h 1557 2004-11-22 12:01:16Z carolyn $
+   $Id: loader.h 1673 2004-12-03 16:43:53Z twisti $
 */
 
 
@@ -35,8 +35,8 @@
 
 #include <stdio.h>
 
-#ifdef USE_ZLIB
-#include "unzip.h"
+#if defined(USE_ZLIB)
+# include "vm/unzip.h"
 #endif