Subversion Repositories Kolibri OS

Rev

Rev 8787 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

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