summaryrefslogtreecommitdiffstats
path: root/package/config/foo.h
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer2007-06-28 13:53:59 +0200
committerBernhard Reutner-Fischer2007-06-28 13:53:59 +0200
commit543a89568ea3d587d95778b3298b8588bc589c20 (patch)
treee03f51d850c1edc8f906f0ae60ee159cc7096e77 /package/config/foo.h
parent- adjust infrastructure for new kconfig (diff)
downloadbuildroot-543a89568ea3d587d95778b3298b8588bc589c20.tar.gz
buildroot-543a89568ea3d587d95778b3298b8588bc589c20.tar.xz
buildroot-543a89568ea3d587d95778b3298b8588bc589c20.zip
- make it compile with a C89 compiler
Diffstat (limited to 'package/config/foo.h')
-rw-r--r--package/config/foo.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/package/config/foo.h b/package/config/foo.h
new file mode 100644
index 000000000..32853be46
--- /dev/null
+++ b/package/config/foo.h
@@ -0,0 +1,9 @@
+#ifndef __KCONFIG_FOO_H
+#define __KCONFIG_FOO_H
+#include <features.h>
+#include <limits.h>
+
+#ifndef PATH_MAX
+#define PATH_MAX 1024
+#endif
+#endif /* __KCONFIG_FOO_H */