Add <sys/types.h> with off_t and ssize_t

This commit is contained in:
g1n 2022-07-24 13:15:20 +03:00
parent 050a684e57
commit 453745f6dd
Signed by: g1n
GPG Key ID: 8D352193D65D4E2C
1 changed files with 7 additions and 0 deletions

7
src/include/sys/types.h Normal file
View File

@ -0,0 +1,7 @@
#ifndef _SYS_TYPES_H
#define _SYS_TYPES_H
typedef long int off_t;
typedef long ssize_t;
#endif