Lely core libraries 2.3.4
stdint.h
Go to the documentation of this file.
1
22#ifndef LELY_LIBC_STDINT_H_
23#define LELY_LIBC_STDINT_H_
24
25#include <lely/features.h>
26
27#include <stdint.h>
28
29#ifndef SSIZE_MAX
30#if __WORDSIZE == 64
31#define SSIZE_MAX INT_LEAST64_MAX
32#else
33#define SSIZE_MAX INT_LEAST32_MAX
34#endif
35#endif
36
37#endif // !LELY_LIBC_STDINT_H_
This header file is part of the Lely libraries; it contains the compiler feature definitions.
This header file is part of the C11 and POSIX compatibility library; it includes <stdint....