Skip to content

AFNI/NIfTI Server

Sections
Personal tools
You are here: Home » AFNI » Documentation

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 /* config.h.  Generated automatically by configure.  */
00002 /* config.h.in.  Generated automatically from configure.in by autoheader.  */
00003 /* Process this file with autoheader to produce config.h.in */
00004 #ifndef CONFIG_H
00005 #define CONFIG_H
00006 
00007 /* Package and version. */
00008 #define PACKAGE "gifsicle"
00009 #define VERSION "1.25"
00010 
00011 /* Define when using the debugging malloc library. */
00012 /* #undef DMALLOC */
00013 
00014 /* Define to a function that returns a random number. */
00015 #define RANDOM random
00016 
00017 /* Define to the number of arguments to gettimeofday. (gifview only) */
00018 #define GETTIMEOFDAY_PROTO 2
00019 
00020 /* Get the [u_]int*_t typedefs. */
00021 #define NEED_SYS_TYPES_H 1
00022 #ifdef NEED_SYS_TYPES_H
00023 # include <sys/types.h>
00024 #endif
00025 /* #undef u_int16_t */
00026 /* #undef u_int32_t */
00027 /* #undef int32_t */
00028 
00029 /* Pathname separator character ('/' on Unix). */
00030 #define PATHNAME_SEPARATOR '/'
00031 
00032 /* Define this to write GIFs to stdout even when stdout is a terminal. */
00033 /* #undef OUTPUT_GIF_TO_TERMINAL */
00034 
00035 /* Define if GIF LZW compression is off. */
00036 /* #undef GIF_UNGIF */
00037 
00038 
00039 /* Define to empty if the keyword does not work.  */
00040 /* #undef const */
00041 
00042 /* Define as __inline if that's what the C compiler calls it.  */
00043 /* #undef inline */
00044 
00045 /* Define if the X Window System is missing or not being used.  */
00046 /* #undef X_DISPLAY_MISSING */
00047 
00048 /* Define if you have the strerror function.  */
00049 #define HAVE_STRERROR 1
00050 
00051 /* Define if you have the strtoul function.  */
00052 #define HAVE_STRTOUL 1
00053 
00054 /* Define if you have the <sys/select.h> header file.  */
00055 #define HAVE_SYS_SELECT_H 1
00056 
00057 /* Name of package */
00058 #define PACKAGE "gifsicle"
00059 
00060 /* Version number of package */
00061 #define VERSION "1.25"
00062 
00063 
00064 #ifdef __cplusplus
00065 extern "C" {
00066 #endif
00067 
00068 /* Use either the clean-failing malloc library in fmalloc.c, or the debugging
00069    malloc library in dmalloc.c. */
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 /* Prototype strerror if we don't have it. */
00084 #ifndef HAVE_STRERROR
00085 char *strerror(int errno);
00086 #endif
00087 
00088 #ifdef __cplusplus
00089 }
00090 /* Get rid of a possible inline macro under C++. */
00091 /* # undef inline */
00092 #endif
00093 #endif
 

Powered by Plone

This site conforms to the following standards: