]> git.imager.perl.org - imager.git/blobdiff - imio.h
avoid re-entrancy into giflib using the mutex API
[imager.git] / imio.h
diff --git a/imio.h b/imio.h
index 682750159d8042013108f224d13531c0b9dfbc53..6d5cea4fdef085f77e6ee760e205449dea2e9d87 100644 (file)
--- a/imio.h
+++ b/imio.h
@@ -3,6 +3,7 @@
 #include <stdio.h>
 #include <sys/stat.h>
 
+#include "imconfig.h"
 #include "log.h"
 
 typedef struct i_mempool {
@@ -16,18 +17,11 @@ void  i_mempool_extend(i_mempool *mp);
 void *i_mempool_alloc(i_mempool *mp, size_t size);
 void  i_mempool_destroy(i_mempool *mp);
 
-
-
 #ifdef _MSC_VER
 #undef min
 #undef max
 #endif
 
-extern unsigned long i_utf8_advance(char const **p, int *len);
-
-/* XXX Shouldn't these go away? */
-
-int i_min(int a,int b);
-int i_max(int x,int y);
+extern unsigned long i_utf8_advance(char const **p, size_t *len);
 
 #endif