/* FILE: COMMON.H This header file is useful for automatically including the commonly used system include files. To use this file, simply type #include "common.h" in place of #include , #include , etc. Be sure that if you need other, more specialized header files not among those listed below, you #include them separately. */ #ifndef common_included #define common_included #include /* most compilers need this file */ #include /* isalpha and similar */ #include /* mathematical functions */ #include "dbhost.h" #include /* string routines */ #include /* malloc() & realloc() */ /* We do need the following. */ #ifndef NUL /* Let's C distinguishes between */ #define NUL '\0' /* the NULL pointer and the NUL */ #endif /* character */ #endif /* ifndef common_included */