From: Matthias Kruk Date: Mon, 2 Dec 2019 08:05:33 +0000 (+0900) Subject: Add ssize_t type to sys/types.h X-Git-Url: https://git.corax.cc/?a=commitdiff_plain;h=501f5f81bad3fc52b60ac80d17f5c9dc512e10fb;p=corax Add ssize_t type to sys/types.h --- diff --git a/include/sys/types.h b/include/sys/types.h index 4c7e3b8..2ad1f4f 100644 --- a/include/sys/types.h +++ b/include/sys/types.h @@ -4,5 +4,6 @@ #include typedef unsigned long size_t; +typedef long ssize_t; #endif /* __SYS_TYPES_H */