00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef RENDER_H
00019 #define RENDER_H
00020
00021 #ifdef HAVE_CONFIG_H
00022 #include "config.h"
00023 #endif
00024
00025 #ifdef HAVE_LIMITS_H
00026 #include <limits.h>
00027 #else
00028 #ifdef HAVE_VALUES_H
00029 #include <values.h>
00030 #endif
00031 #endif
00032
00033 #include <signal.h>
00034 #include <assert.h>
00035 #include <math.h>
00036 #include <stdio.h>
00037 #ifdef HAVE_SYS_TYPES_H
00038 #include <sys/types.h>
00039 #endif
00040 #ifdef HAVE_STDLIB_H
00041 #include <stdlib.h>
00042 #endif
00043 #ifdef HAVE_STDDEF_H
00044 #include <stddef.h>
00045 #endif
00046 #ifdef HAVE_STRINGS_H
00047 #include <strings.h>
00048 #endif
00049 #ifdef HAVE_STRING_H
00050 #include <string.h>
00051 #endif
00052
00053 #include "macros.h"
00054 #include "const.h"
00055 #include "types.h"
00056 #include "graph.h"
00057 #include "globals.h"
00058 #include "renderprocs.h"
00059 #include "gvrender.h"
00060
00061 #ifndef NIL
00062 #define NIL(type) ((type)0)
00063 #endif
00064 #endif