forked from Bananymous/banan-os
LibC: sys/types uses 'typedef' instead of 'using'
This commit is contained in:
parent
e84f613c4d
commit
12351d5cb6
|
@ -5,18 +5,17 @@
|
||||||
|
|
||||||
__BEGIN_DECLS
|
__BEGIN_DECLS
|
||||||
|
|
||||||
|
typedef int32_t blkcnt_t;
|
||||||
using blkcnt_t = int32_t;
|
typedef int32_t blksize_t;
|
||||||
using blksize_t = int32_t;
|
typedef uint64_t dev_t;
|
||||||
using dev_t = uint64_t;
|
typedef uint32_t ino_t;
|
||||||
using ino_t = uint32_t;
|
typedef uint16_t mode_t;
|
||||||
using mode_t = uint16_t;
|
typedef uint32_t nlink_t;
|
||||||
using nlink_t = uint32_t;
|
typedef int64_t off_t;
|
||||||
using off_t = int64_t;
|
typedef uint64_t time_t;
|
||||||
using time_t = uint64_t;
|
typedef int32_t id_t;
|
||||||
using id_t = int32_t;
|
typedef id_t pid_t;
|
||||||
using pid_t = id_t;
|
typedef id_t uid_t;
|
||||||
using uid_t = id_t;
|
typedef id_t gid_t;
|
||||||
using gid_t = id_t;
|
|
||||||
|
|
||||||
__END_DECLS
|
__END_DECLS
|
Loading…
Reference in New Issue