Rev 80 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
#ifndef __TENDRA_SYS_TYPES_H
#define __TENDRA_SYS_TYPES_H
typedef int uid_t;
typedef int gid_t;
typedef int ino_t;
typedef int mode_t;
typedef int off_t;
typedef int pid_t;
typedef int nlink_t;
typedef int dev_t;
typedef long key_t;
typedef unsigned int size_t;
typedef long ssize_t;
typedef int int64_t;
typedef unsigned long long uint64_t;
typedef int int32_t;
typedef unsigned int uint32_t;
typedef short int16_t;
typedef unsigned short uint16_t;
typedef char int8_t;
typedef unsigned char uint8_t;
typedef int nl_item;
typedef int time_t;
struct timespec {
time_t tv_sec; /* seconds */
long tv_nsec; /* and nanoseconds */
};
typedef uint32_t fflags_t; /* file flags */
typedef uint64_t blksize_t;
typedef uint64_t blkcnt_t;
#endif