shithub: scc

ref: a73645af515b2acd8071837597a4a18b649ee9be
dir: /include/bits/linux/sys.h/

View raw version
#define O_RDONLY  0x00000000
#define O_WRONLY  0x00000001
#define O_RDWR    0x00000002
#define O_ACCMODE 0x00000003

#define O_TRUNC   0x00000200
#define O_APPEND  0x00000400
#define O_CREAT   0x00000040

#define AT_FDCWD  -100
#define CLOCKS_PER_SEC ((clock_t) 1000000)
#define RUSAGE_SELF 0

typedef int pid_t;

struct sigaction;

extern pid_t _getpid(void);
extern int _kill(pid_t, int);
extern int _sigaction(int, struct sigaction *, struct sigaction *);