Add typedefs for suseconds_t and nlink_t.

This commit is contained in:
Dan Gohman 2019-01-02 16:01:05 -08:00
parent d68aebf353
commit 26722dc857

View File

@ -14,4 +14,11 @@ typedef long long off_t;
/* This is defined to be the same size as size_t. */
typedef long ssize_t;
/* Define this to be 64-bit as its main use is in struct timeval where the
extra space would otherwise be padding. */
typedef long long suseconds_t;
/* Follow x32 in defining this as 64-bit. */
typedef long long nlink_t;
#endif