banan-os/libc/include/sys/types.h

26 lines
500 B
C
Raw Normal View History

#pragma once
2023-05-10 23:28:56 +03:00
#include <stddef.h>
#include <stdint.h>
#include <sys/cdefs.h>
__BEGIN_DECLS
typedef int32_t blkcnt_t;
typedef int32_t blksize_t;
2023-05-10 23:28:56 +03:00
typedef uint64_t clock_t;
typedef int32_t clockid_t;
typedef uint64_t dev_t;
typedef uint32_t ino_t;
typedef uint16_t mode_t;
typedef uint32_t nlink_t;
typedef int64_t off_t;
typedef uint64_t time_t;
2023-05-10 23:28:56 +03:00
typedef uint64_t timer_t;
typedef int32_t id_t;
typedef id_t pid_t;
typedef id_t uid_t;
typedef id_t gid_t;
2023-05-10 23:28:56 +03:00
typedef int64_t ssize_t;
__END_DECLS