libc: Add off_t to sys/types.h

This commit is contained in:
apio 2022-10-12 15:30:41 +02:00
parent 854f585e1a
commit e40304f2f1

View File

@ -10,4 +10,7 @@ typedef unsigned long int size_t;
/* Signed version of size_t. */
typedef long int ssize_t;
/* The type of an offset into a file. */
typedef long int off_t;
#endif