blob: aa4a7474013b24e218c3fcf284a306bd1cb872e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* config.h: master configuration file, included first by all compilable
source files (not headers). */
#ifndef CONFIG_H
#define CONFIG_H
#ifdef WIN32
# include <win32lib.h>
#endif
#endif /* CONFIG_H */
|