foo.h 192 B

123456789101112
  1. #ifndef __KCONFIG_FOO_H
  2. #define __KCONFIG_FOO_H
  3. #ifndef __APPLE__
  4. #include <features.h>
  5. #endif
  6. #include <limits.h>
  7. #ifndef PATH_MAX
  8. #define PATH_MAX 1024
  9. #endif
  10. #endif /* __KCONFIG_FOO_H */