/**************************************************************************** * * * Third Year Project * * * * An IBM PC Emulator * * For Unix and X Windows * * * * By David Hedley * * * * * * This program is Copyrighted. Consult the file COPYRIGHT for more details * * * ****************************************************************************/ /* This is GLOBAL.H It contains definitions for the program wide functions */ #ifndef GLOBAL_H #define GLOBAL_H #include "mytypes.h" /* Added by dtrg. */ #include "../wasm_libc_wrapper/stdlib.h" #include "../wasm_libc_wrapper/stdio.h" #ifndef FALSE # define FALSE 0 #endif #ifndef TRUE # define TRUE (!FALSE) #endif #endif