Doxygen Source Code Documentation
        
Main Page   Alphabetical List   Data Structures   File List   Data Fields   Globals   Search   
acconfig.h
Go to the documentation of this file.00001 
00002 #ifndef CONFIG_H
00003 #define CONFIG_H
00004 
00005 
00006 #define PACKAGE "gifsicle"
00007 #define VERSION "97"
00008 
00009 
00010 #undef DMALLOC
00011 
00012 
00013 #undef RANDOM
00014 
00015 
00016 #undef GETTIMEOFDAY_PROTO
00017 
00018 
00019 #undef NEED_SYS_TYPES_H
00020 #ifdef NEED_SYS_TYPES_H
00021 # include <sys/types.h>
00022 #endif
00023 #undef u_int16_t
00024 #undef u_int32_t
00025 #undef int32_t
00026 
00027 
00028 #define PATHNAME_SEPARATOR '/'
00029 
00030 
00031 #undef OUTPUT_GIF_TO_TERMINAL
00032 
00033 
00034 #undef GIF_UNGIF
00035 
00036 @TOP@
00037 @BOTTOM@
00038 
00039 #ifdef __cplusplus
00040 extern "C" {
00041 #endif
00042 
00043 
00044 
00045 #ifdef DMALLOC
00046 # include "dmalloc.h"
00047 # define Gif_DeleteFunc         (&debug_free)
00048 # define Gif_DeleteArrayFunc    (&debug_free)
00049 #else
00050 # include <stddef.h>
00051 # define xmalloc(s)             fail_die_malloc((s),__FILE__,__LINE__)
00052 # define xrealloc(p,s)          fail_die_realloc((p),(s),__FILE__,__LINE__)
00053 # define xfree                  free
00054 void *fail_die_malloc(size_t, const char *, int);
00055 void *fail_die_realloc(void *, size_t, const char *, int);
00056 #endif
00057 
00058 
00059 #ifndef HAVE_STRERROR
00060 char *strerror(int errno);
00061 #endif
00062 
00063 #ifdef __cplusplus
00064 }
00065 
00066 # undef inline
00067 #endif
00068 #endif