mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-18 03:23:31 +08:00
25 lines
395 B
C
25 lines
395 B
C
/*
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/*
|
|
* File : libc_limits.h
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2020-09-05 Meco Manthe first version
|
|
*/
|
|
|
|
#ifndef __LIBC_LIMITS_H__
|
|
#define __LIBC_LIMITS_H__
|
|
|
|
#include <limits.h>
|
|
|
|
#ifndef SSIZE_MAX
|
|
# define SSIZE_MAX LONG_MAX
|
|
#endif
|
|
|
|
#endif
|