18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */
28c2ecf20Sopenharmony_ci#ifndef __VDSO_LIMITS_H
38c2ecf20Sopenharmony_ci#define __VDSO_LIMITS_H
48c2ecf20Sopenharmony_ci
58c2ecf20Sopenharmony_ci#define USHRT_MAX	((unsigned short)~0U)
68c2ecf20Sopenharmony_ci#define SHRT_MAX	((short)(USHRT_MAX >> 1))
78c2ecf20Sopenharmony_ci#define SHRT_MIN	((short)(-SHRT_MAX - 1))
88c2ecf20Sopenharmony_ci#define INT_MAX		((int)(~0U >> 1))
98c2ecf20Sopenharmony_ci#define INT_MIN		(-INT_MAX - 1)
108c2ecf20Sopenharmony_ci#define UINT_MAX	(~0U)
118c2ecf20Sopenharmony_ci#define LONG_MAX	((long)(~0UL >> 1))
128c2ecf20Sopenharmony_ci#define LONG_MIN	(-LONG_MAX - 1)
138c2ecf20Sopenharmony_ci#define ULONG_MAX	(~0UL)
148c2ecf20Sopenharmony_ci#define LLONG_MAX	((long long)(~0ULL >> 1))
158c2ecf20Sopenharmony_ci#define LLONG_MIN	(-LLONG_MAX - 1)
168c2ecf20Sopenharmony_ci#define ULLONG_MAX	(~0ULL)
178c2ecf20Sopenharmony_ci#define UINTPTR_MAX	ULONG_MAX
188c2ecf20Sopenharmony_ci
198c2ecf20Sopenharmony_ci#endif /* __VDSO_LIMITS_H */
20