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 File Reference

#include <sys/types.h>
#include <stddef.h>

Go to the source code of this file.


Defines

#define PACKAGE   "gifsicle"
#define VERSION   "1.25"
#define RANDOM   random
#define GETTIMEOFDAY_PROTO   2
#define NEED_SYS_TYPES_H   1
#define PATHNAME_SEPARATOR   '/'
#define HAVE_STRERROR   1
#define HAVE_STRTOUL   1
#define HAVE_SYS_SELECT_H   1
#define PACKAGE   "gifsicle"
#define VERSION   "1.25"
#define xmalloc(s)   fail_die_malloc((s),__FILE__,__LINE__)
#define xrealloc(p, s)   fail_die_realloc((p),(s),__FILE__,__LINE__)
#define xfree   free

Functions

void * fail_die_malloc (size_t, const char *, int)
void * fail_die_realloc (void *, size_t, const char *, int)

Define Documentation

#define GETTIMEOFDAY_PROTO   2
 

Definition at line 18 of file gifsicledir/config.h.

#define HAVE_STRERROR   1
 

Definition at line 49 of file gifsicledir/config.h.

#define HAVE_STRTOUL   1
 

Definition at line 52 of file gifsicledir/config.h.

#define HAVE_SYS_SELECT_H   1
 

Definition at line 55 of file gifsicledir/config.h.

#define NEED_SYS_TYPES_H   1
 

Definition at line 21 of file gifsicledir/config.h.

#define PACKAGE   "gifsicle"
 

Definition at line 58 of file gifsicledir/config.h.

#define PACKAGE   "gifsicle"
 

Definition at line 58 of file gifsicledir/config.h.

#define PATHNAME_SEPARATOR   '/'
 

Definition at line 30 of file gifsicledir/config.h.

#define RANDOM   random
 

Definition at line 15 of file gifsicledir/config.h.

Referenced by colormap_image_floyd_steinberg().

#define VERSION   "1.25"
 

Definition at line 61 of file gifsicledir/config.h.

#define VERSION   "1.25"
 

Definition at line 61 of file gifsicledir/config.h.

#define xfree   free
 

Definition at line 78 of file gifsicledir/config.h.

#define xmalloc      fail_die_malloc((s),__FILE__,__LINE__)
 

Definition at line 76 of file gifsicledir/config.h.

#define xrealloc p,
     fail_die_realloc((p),(s),__FILE__,__LINE__)
 

Definition at line 77 of file gifsicledir/config.h.


Function Documentation

void* fail_die_malloc size_t   ,
const char *   ,
int   
 

Definition at line 20 of file fmalloc.c.

00021 {
00022   void *p = malloc(size);
00023   if (!p && size)
00024     fail_die_malloc_die(size, file, line);
00025   return p;
00026 }

void* fail_die_realloc void *   ,
size_t   ,
const char *   ,
int   
 

Definition at line 29 of file fmalloc.c.

00030 {
00031   if (!p)
00032     return fail_die_malloc(size, file, line);
00033   p = realloc(p, size);
00034   if (!p && size)
00035     fail_die_malloc_die(size, file, line);
00036   return p;
00037 }
 

Powered by Plone

This site conforms to the following standards: