brintos

brintos / linux-shallow public Read only

0
0
Text · 564 B · 0197888 Raw
20 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#ifndef __VDSO_LIMITS_H3#define __VDSO_LIMITS_H4 5#define USHRT_MAX	((unsigned short)~0U)6#define SHRT_MAX	((short)(USHRT_MAX >> 1))7#define SHRT_MIN	((short)(-SHRT_MAX - 1))8#define INT_MAX		((int)(~0U >> 1))9#define INT_MIN		(-INT_MAX - 1)10#define UINT_MAX	(~0U)11#define LONG_MAX	((long)(~0UL >> 1))12#define LONG_MIN	(-LONG_MAX - 1)13#define ULONG_MAX	(~0UL)14#define LLONG_MAX	((long long)(~0ULL >> 1))15#define LLONG_MIN	(-LLONG_MAX - 1)16#define ULLONG_MAX	(~0ULL)17#define UINTPTR_MAX	ULONG_MAX18 19#endif /* __VDSO_LIMITS_H */20