1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:07:45 +00:00

LibC: Add additional data types

- Reorganized some variables (alphabetically and based on their function) so that the new ones don't stick out.
- See: https://github.com/SerenityOS/serenity/issues/6068

Co-authored-by: Linus Groh <mail@linusgroh.de>
This commit is contained in:
Panagiotis Vasilopoulos 2021-04-21 22:24:58 +03:00 committed by Linus Groh
parent 1399048662
commit 43956c9611

View file

@ -37,16 +37,20 @@ typedef __WINT_TYPE__ wint_t;
typedef uint32_t ino_t; typedef uint32_t ino_t;
typedef int64_t off_t; typedef int64_t off_t;
typedef uint32_t blkcnt_t;
typedef uint32_t blksize_t;
typedef uint32_t dev_t; typedef uint32_t dev_t;
typedef uint16_t mode_t; typedef uint16_t mode_t;
typedef uint32_t nlink_t; typedef uint32_t nlink_t;
typedef uint32_t blksize_t;
typedef uint32_t blkcnt_t;
typedef int64_t time_t; typedef int64_t time_t;
typedef uint32_t useconds_t; typedef uint32_t useconds_t;
typedef int32_t suseconds_t; typedef int32_t suseconds_t;
typedef uint32_t clock_t; typedef uint32_t clock_t;
typedef uint64_t fsblkcnt_t;
typedef uint64_t fsfilcnt_t;
#define __socklen_t_defined #define __socklen_t_defined
#define __socklen_t uint32_t #define __socklen_t uint32_t
typedef __socklen_t socklen_t; typedef __socklen_t socklen_t;