ax-libc 0.5.12

ArceOS user program library for C apps
#ifndef __SYS_TYPES_H__
#define __SYS_TYPES_H__

#include <stddef.h>

typedef unsigned char u_char;

typedef unsigned mode_t;
typedef uint32_t nlink_t;
typedef int64_t off_t;
typedef uint64_t ino_t;
typedef uint64_t dev_t;
typedef long blksize_t;
typedef int64_t blkcnt_t;

typedef int pid_t;
typedef unsigned uid_t;
typedef unsigned gid_t;

#endif // __SYS_TYPES_H__