// **************************************************************************
// **************************************************************************
// **************************************************************************
// **                                                                      **
// ** GENERIC.H                                                     MODULE **
// **                                                                      **
// ** General headers used by all files.                                   **
// **                                                                      **
// ** Using this makes global changes easier, and allows the compiler to   **
// ** make use of its pre-compiled header capability.                      **
// **                                                                      **
// ** Last modified : 18 Nov 1997 by John Brandwood                        **
// **                                                                      **
// **************************************************************************
// **************************************************************************
// **************************************************************************

#ifndef __GENERIC_h
#define __GENERIC_h

#ifdef PC
 #include <stdio.h>
 #include <stdlib.h>
 #include <ctype.h>
 #include <string.h>
#endif

#ifdef N64
 #define F3DEX_GBI
 #include <ultra64.h>
#endif

//outdated system files removed because they mess
//up VC's auto-dependency updating

//	#ifdef PSX
//	 #include <stdlib.h>
//	#endif

//	#ifdef SATURN
//	 #include "stddef.h"
//	 #include "sega_xpt.h"
//	#endif

//	#ifdef THREEDO
//	 #include "Portfolio.h"
//	 #include "Init3DO.h"
//	 #include "Parse3DO.h"
//	 #include "Utils3DO.h"
//	#endif 

#include "lfptypes.h"
#include "memory.h"

//
// End Of __GENERIC_h
//

#endif



// **************************************************************************
// **************************************************************************
// **************************************************************************
//	END OF GENERIC.H
// **************************************************************************
// **************************************************************************
// **************************************************************************

