Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. #ifndef _LIMITS_H_
  2. #define _LIMITS_H_
  3.  
  4.  
  5. #define INT_MAX       2147483647
  6. #define UINT_MAX      (INT_MAX * 2U + 1)
  7.  
  8.  
  9. #ifndef ARG_MAX
  10. #define ARG_MAX         4096
  11. #endif
  12.  
  13. #ifndef PATH_MAX
  14. #define PATH_MAX        4096
  15. #endif
  16.  
  17.  
  18. #endif /* _LIMITS_H_ */