Doxygen Source Code Documentation
        
Main Page   Alphabetical List   Data Structures   File List   Data Fields   Globals   Search   
config.h
Go to the documentation of this file.00001 
00002 
00003 
00004 #ifndef CONFIG_H
00005 #define CONFIG_H
00006 
00007 
00008 #define PACKAGE "gifsicle"
00009 #define VERSION "1.25"
00010 
00011 
00012 
00013 
00014 
00015 #define RANDOM random
00016 
00017 
00018 #define GETTIMEOFDAY_PROTO 2
00019 
00020 
00021 #define NEED_SYS_TYPES_H 1
00022 #ifdef NEED_SYS_TYPES_H
00023 # include <sys/types.h>
00024 #endif
00025 
00026 
00027 
00028 
00029 
00030 #define PATHNAME_SEPARATOR '/'
00031 
00032 
00033 
00034 
00035 
00036 
00037 
00038 
00039 
00040 
00041 
00042 
00043 
00044 
00045 
00046 
00047 
00048 
00049 #define HAVE_STRERROR 1
00050 
00051 
00052 #define HAVE_STRTOUL 1
00053 
00054 
00055 #define HAVE_SYS_SELECT_H 1
00056 
00057 
00058 #define PACKAGE "gifsicle"
00059 
00060 
00061 #define VERSION "1.25"
00062 
00063 
00064 #ifdef __cplusplus
00065 extern "C" {
00066 #endif
00067 
00068 
00069 
00070 #ifdef DMALLOC
00071 # include "dmalloc.h"
00072 # define Gif_DeleteFunc         (&debug_free)
00073 # define Gif_DeleteArrayFunc    (&debug_free)
00074 #else
00075 # include <stddef.h>
00076 # define xmalloc(s)             fail_die_malloc((s),__FILE__,__LINE__)
00077 # define xrealloc(p,s)          fail_die_realloc((p),(s),__FILE__,__LINE__)
00078 # define xfree                  free
00079 void *fail_die_malloc(size_t, const char *, int);
00080 void *fail_die_realloc(void *, size_t, const char *, int);
00081 #endif
00082 
00083 
00084 #ifndef HAVE_STRERROR
00085 char *strerror(int errno);
00086 #endif
00087 
00088 #ifdef __cplusplus
00089 }
00090 
00091 
00092 #endif
00093 #endif