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