ulimit.h 183 B

1234567891011121314151617
  1. #ifndef _ULIMIT_H
  2. #define _ULIMIT_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #define UL_GETFSIZE 1
  7. #define UL_SETFSIZE 2
  8. long ulimit (int, ...);
  9. #ifdef __cplusplus
  10. }
  11. #endif
  12. #endif