1 
2 // main.h
3 
4 #ifndef MAIN_H
5 #define MAIN_H
6 
7 // includes
8 
9 #include "util.h"
10 
11 // functions
12 
13 extern void quit ();
14 
15 #endif // !defined MAIN_H
16 
17 // end of main.h
18 
19