162306a36Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 262306a36Sopenharmony_ci#ifndef __VDSO_LIMITS_H 362306a36Sopenharmony_ci#define __VDSO_LIMITS_H 462306a36Sopenharmony_ci 562306a36Sopenharmony_ci#define USHRT_MAX ((unsigned short)~0U) 662306a36Sopenharmony_ci#define SHRT_MAX ((short)(USHRT_MAX >> 1)) 762306a36Sopenharmony_ci#define SHRT_MIN ((short)(-SHRT_MAX - 1)) 862306a36Sopenharmony_ci#define INT_MAX ((int)(~0U >> 1)) 962306a36Sopenharmony_ci#define INT_MIN (-INT_MAX - 1) 1062306a36Sopenharmony_ci#define UINT_MAX (~0U) 1162306a36Sopenharmony_ci#define LONG_MAX ((long)(~0UL >> 1)) 1262306a36Sopenharmony_ci#define LONG_MIN (-LONG_MAX - 1) 1362306a36Sopenharmony_ci#define ULONG_MAX (~0UL) 1462306a36Sopenharmony_ci#define LLONG_MAX ((long long)(~0ULL >> 1)) 1562306a36Sopenharmony_ci#define LLONG_MIN (-LLONG_MAX - 1) 1662306a36Sopenharmony_ci#define ULLONG_MAX (~0ULL) 1762306a36Sopenharmony_ci#define UINTPTR_MAX ULONG_MAX 1862306a36Sopenharmony_ci 1962306a36Sopenharmony_ci#endif /* __VDSO_LIMITS_H */ 20