diff options
Diffstat (limited to 'support/kconfig/foo.h')
-rw-r--r-- | support/kconfig/foo.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/support/kconfig/foo.h b/support/kconfig/foo.h new file mode 100644 index 0000000..b9cfdf8 --- /dev/null +++ b/support/kconfig/foo.h @@ -0,0 +1,12 @@ +#ifndef __KCONFIG_FOO_H +#define __KCONFIG_FOO_H + +#ifndef __APPLE__ +#include <features.h> +#endif +#include <limits.h> + +#ifndef PATH_MAX +#define PATH_MAX 1024 +#endif +#endif /* __KCONFIG_FOO_H */ |