00001 /* STANDARD.H */ 00002 00003 /* 00004 * This file should contain definitions for system-wide stuff. 00005 * (Note: Ideally, there shouldn't be any global variables or stuff like 00006 * that in this file). 00007 */ 00008 #ifndef _STANDARD_H_ 00009 #define _STANDARD_H_ 00010 00011 /* 00012 * Standard C/Unix type things. 00013 */ 00014 00015 #include <stdio.h> 00016 #include <stdlib.h> 00017 #include <math.h> 00018 #include <malloc.h> 00019 #include <signal.h> 00020 #include <assert.h> 00021 00022 /* 00023 * Program specific include files. 00024 */ 00025 00026 #include "bytes.h" 00027 #include "error.h" 00028 #include "clock.h" 00029 00030 #endif