PatchworkOS  19e446b
A non-POSIX operating system.
Loading...
Searching...
No Matches
ssize_t.h
Go to the documentation of this file.
1#ifndef _INTERNAL_SSIZE_T_H
2#define _INTERNAL_SSIZE_T_H 1
3
4/**
5 * @brief Signed size type.
6 * @ingroup libstd
7 *
8 * The `ssize_t` is used to represent offsets in memory.
9 *
10 */
11typedef __INT64_TYPE__ ssize_t;
12
13#define SSIZE_MAX __INT64_MAX__
14#define SSIZE_MIN __INT64_MIN__
15
16#endif
__INT64_TYPE__ ssize_t
Signed size type.
Definition ssize_t.h:11