diff src/dgif_lib.c @ 187:b405438285a2 r20-3b20

Import from CVS: tag r20-3b20
author cvs
date Mon, 13 Aug 2007 09:56:28 +0200
parents 3d6bfa290dbd
children 850242ba4a81
line wrap: on
line diff
--- a/src/dgif_lib.c	Mon Aug 13 09:55:30 2007 +0200
+++ b/src/dgif_lib.c	Mon Aug 13 09:56:28 2007 +0200
@@ -14,14 +14,6 @@
 
 #ifdef emacs
 #include <config.h>
-void *xmalloc (size_t size);
-void *xrealloc (void *ptr, size_t size);
-#ifdef ERROR_CHECK_MALLOC
-void *xfree_1 (void *);
-#define xfree xfree_1
-#else
-void *xfree (void *);
-#endif
 #endif /* emacs */
 
 #ifdef __MSDOS__
@@ -43,6 +35,18 @@
 #include "gif_hash.h"
 #endif
 
+#ifdef emacs
+void *xmalloc (size_t size);
+void *xrealloc (void *ptr, size_t size);
+#ifdef ERROR_CHECK_MALLOC
+void *xfree_1 (void *);
+#define xfree xfree_1
+#else
+void *xfree (void *);
+#endif
+#endif /* emacs */
+
+
 #define PROGRAM_NAME	"GIF_LIBRARY"
 
 #define COMMENT_EXT_FUNC_CODE	0xfe /* Extension function code for comment. */