6
// misc tricks which need to be available before other includes,
7
// but which don't need to be repeated in every source file
10
// create a way to include files defined at the command line,
11
// like with "gcc -DCONFIGFILE=foo.h"
12
#define incfile2(s) #s
13
#define incfile(s) incfile2(s)
15
//#include incfile(CONFIGFILE)