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

14 lines
192 B
C
Raw Normal View History

#pragma once
#include <stdint.h>
#include <sys/cdefs.h>
__BEGIN_DECLS
2023-03-23 19:24:12 +02:00
typedef int32_t id_t;
typedef id_t pid_t;
typedef id_t uid_t;
typedef id_t gid_t;
typedef uint16_t mode_t;
__END_DECLS