1 #ifndef __EXHAUST_HPP__
2 #define __EXHAUST_HPP__
3 
4 /* "Species" - a CoreWars evolver.  Copyright (C) 2003 'Varfar'
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by the Free
8  * Software Foundation; either version 1, or (at your option) any later
9  * version.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14  * more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with this program; if not, write to the Free Software Foundation, Inc.,
18  * 675 Mass Ave, Cambridge, MA 02139, USA.
19  */
20 
21 extern "C" { // import exhaust headers
22 
23 	#include "exhaust.h"
24 	#include "insn.h"
25 	#include "asm.h"
26 	#include "sim.h"
27 	#include "pspace.h"
28 
29 } // extern "C"
30 
31 #endif // __EXHAUST_HPP__
32