blob: 92f562b20bdaec3018b356dd2d79f33305b28443 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef ___CONFIG_H
#define ___CONFIG_H
/*
Default configuration is linux configuration ofc
*/
#define def(X) defined(CONFIG_##X)
#if def(OS_NETBSD)
#include "config/config_bsd.h"
#else
#include "config/config_linux.h"
#endif
#endif
|