00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 #ifndef DEFINITIONS_H
00015 #define DEFINITIONS_H
00016 
00017 #ifdef HAVE_CONFIG_H
00018 
00019 #include <config.h>
00020 #endif
00021 
00022 #ifdef BLD_PROCEDURE
00023 
00024 #include <portinfo.h>
00025 #endif
00026 #ifdef HAVE_CONFIG_H
00027 
00028 #include <config.h>
00029 #endif
00030 
00031 #ifdef BLD_PROCEDURE
00032 
00033 #include <portinfo.h>
00034 #endif
00035 
00036 #ifndef FALSE
00037 #define FALSE 0
00038 #endif
00039 
00040 #ifndef TRUE
00041 #define TRUE  1
00042 #endif
00043 
00044 
00045 #define MAXVAL 20 
00046 
00047 
00048 static const int Prev[3] = {2, 0, 1};
00049 static const int Next[3] = {1, 2, 0}; 
00050 
00051 
00052 typedef int Boolean;
00053 
00054 #endif
00055 
00056