libc_limits.h 391 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (c) 2006-2018, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /*
  7. * File : libc_limits.h
  8. *
  9. * Change Logs:
  10. * Date Author Notes
  11. * 2020-09-05 Meco Manthe first version
  12. */
  13. #ifndef LIBC_LIMITS_H__
  14. #define LIBC_LIMITS_H__
  15. #include <limits.h>
  16. #ifndef SSIZE_MAX
  17. # define SSIZE_MAX LONG_MAX
  18. #endif
  19. #endif