pollution: u_long typedef unsigned long u_long; pollution: u_int typedef unsigned int u_int; pollution: u_short typedef unsigned short u_short; pollution: u_char typedef unsigned char u_char; pollution: ulong typedef unsigned long ulong; pollution: ushort typedef unsigned short ushort; pollution: uint typedef unsigned int uint; pollution: unchar typedef unsigned char unchar; pollution: flags __haiku_std_uint32 flags; pollution: lock __haiku_std_int32 lock; pollution: unused __haiku_std_int32 unused; pollution: owner __haiku_std_int32 owner; pollution: owner_count __haiku_std_int32 owner_count; pollution: flags __haiku_std_uint32 flags; pollution: lock __haiku_std_int32 lock; pollution: mutex __haiku_std_int32 mutex; pollution: waiter_count __haiku_std_int32 waiter_count; pollution: waiter_max __haiku_std_int32 waiter_max; pollution: flags __haiku_std_uint32 flags; pollution: unused __haiku_std_int32 unused; pollution: mutex pthread_mutex_t* mutex; pollution: waiter_count __haiku_std_int32 waiter_count; pollution: lock __haiku_std_int32 lock; pollution: state __haiku_std_int32 state; pollution: flags __haiku_std_uint32 flags; pollution: owner __haiku_std_int32 owner; pollution: mutex __haiku_std_int32 mutex; pollution: unused __haiku_std_int32 unused; pollution: reader_count __haiku_std_int32 reader_count; pollution: writer_count __haiku_std_int32 writer_count; pollution: waiters void* waiters[2]; pollution: local struct { __haiku_std_int32 mutex; __haiku_std_int32 unused; __haiku_std_int32 reader_count; __haiku_std_int32 writer_count; void* waiters[2]; } local; pollution: sem __haiku_std_int32 sem; pollution: shared struct { __haiku_std_int32 sem; } shared; pollution: u union { struct { __haiku_std_int32 mutex; __haiku_std_int32 unused; __haiku_std_int32 reader_count; __haiku_std_int32 writer_count; void* waiters[2]; } local; struct { __haiku_std_int32 sem; } shared; } u; pollution: lock __haiku_std_int32 lock; pollution: daylight extern int daylight; pollution: timezone extern long timezone; pollution: time1 pollution: time2 extern double difftime(time_t time1, time_t time2); pollution: timer extern time_t time(time_t *timer); pollution: timep pollution: buffer pollution: asctime_r extern char *asctime_r(const struct tm *timep, char *buffer); pollution: timer extern char *ctime(const time_t *timer); pollution: timer pollution: buffer pollution: ctime_r extern char *ctime_r(const time_t *timer, char *buffer); pollution: timer extern struct tm *gmtime(const time_t *timer); pollution: timer extern struct tm *gmtime_r(const time_t *timer, struct tm *tm); pollution: timer extern struct tm *localtime(const time_t *timer); pollution: timer extern struct tm *localtime_r(const time_t *timer, struct tm *tm); pollution: buffer pollution: maxSize pollution: format extern size_t strftime(char *buffer, size_t maxSize, const char *format, const struct tm *tm); pollution: buffer pollution: maxSize pollution: format pollution: locale extern size_t strftime_l(char *buffer, size_t maxSize, const char *format, const struct tm *tm, locale_t locale); pollution: buf pollution: format pollution: strptime extern char *strptime(const char *buf, const char *format, struct tm *tm); pollution: clockID pollution: resolution int clock_getres(clockid_t clockID, struct timespec* resolution); pollution: clockID int clock_gettime(clockid_t clockID, struct timespec* _time); pollution: clockID int clock_settime(clockid_t clockID, const struct timespec* _time); pollution: clockID pollution: flags pollution: remainingTime int clock_nanosleep(clockid_t clockID, int flags, const struct timespec* _time, struct timespec* remainingTime); pollution: clockID pollution: event pollution: timerID int timer_create(clockid_t clockID, struct sigevent* event, timer_t* timerID); pollution: timerID int timer_delete(timer_t timerID); pollution: timerID pollution: value int timer_gettime(timer_t timerID, struct itimerspec* value); pollution: timerID pollution: flags pollution: value pollution: oldValue int timer_settime(timer_t timerID, int flags, const struct itimerspec* value, struct itimerspec* oldValue); pollution: timerID int timer_getoverrun(timer_t timerID); pollution: ts pollution: base int timespec_get(struct timespec *ts, int base); pollution: t pollution: stime extern int stime(const time_t *t); pollution: path pollution: mode extern int chmod(const char *path, mode_t mode); pollution: fd pollution: mode extern int fchmod(int fd, mode_t mode); pollution: fd pollution: path pollution: mode pollution: flag extern int fchmodat(int fd, const char *path, mode_t mode, int flag); pollution: path pollution: st extern int stat(const char *path, struct stat *st); pollution: fd pollution: st extern int fstat(int fd, struct stat *st); pollution: path pollution: st extern int lstat(const char *path, struct stat *st); pollution: fd pollution: path pollution: st pollution: flag extern int fstatat(int fd, const char *path, struct stat *st, int flag); pollution: path pollution: mode extern int mkdir(const char *path, mode_t mode); pollution: fd pollution: path pollution: mode extern int mkdirat(int fd, const char *path, mode_t mode); pollution: path pollution: mode extern int mkfifo(const char *path, mode_t mode); pollution: fd pollution: path pollution: mode extern int mkfifoat(int fd, const char *path, mode_t mode); pollution: name pollution: mode pollution: dev pollution: mknod extern int mknod(const char *name, mode_t mode, dev_t dev); pollution: fd pollution: name pollution: mode pollution: dev pollution: mknodat extern int mknodat(int fd, const char *name, mode_t mode, dev_t dev); pollution: cmask extern mode_t umask(mode_t cmask); pollution: fd pollution: path pollution: times pollution: flag extern int utimensat(int fd, const char *path, const struct timespec times[2], int flag); pollution: fd pollution: times extern int futimens(int fd, const struct timespec times[2]); pollution: path pollution: accessMode extern int access(const char *path, int accessMode); pollution: fd pollution: path pollution: accessMode pollution: flag extern int faccessat(int fd, const char *path, int accessMode, int flag); pollution: path extern int chdir(const char *path); pollution: fd extern int fchdir(int fd); pollution: buffer pollution: size extern char *getcwd(char *buffer, size_t size); pollution: fildes extern int pipe(int fildes[2]); pollution: fildes pollution: flags extern int pipe2(int fildes[2], int flags); pollution: fd extern int dup(int fd); pollution: fd1 pollution: fd2 extern int dup2(int fd1, int fd2); pollution: fd1 pollution: fd2 pollution: flags extern int dup3(int fd1, int fd2, int flags); pollution: fd extern int close(int fd); pollution: toPath pollution: path extern int link(const char *toPath, const char *path); pollution: toFD pollution: toPath pollution: pathFD pollution: path pollution: flag extern int linkat(int toFD, const char *toPath, int pathFD, const char *path, int flag); pollution: name extern int unlink(const char *name); pollution: fd pollution: path pollution: flag extern int unlinkat(int fd, const char *path, int flag); pollution: path extern int rmdir(const char *path); pollution: path pollution: buffer pollution: bufferSize extern ssize_t readlink(const char *path, char *buffer, size_t bufferSize); pollution: fd pollution: path pollution: buffer pollution: bufferSize extern ssize_t readlinkat(int fd, const char *path, char *buffer, size_t bufferSize); pollution: toPath pollution: symlinkPath extern int symlink(const char *toPath, const char *symlinkPath); pollution: toPath pollution: fd pollution: symlinkPath extern int symlinkat(const char *toPath, int fd, const char *symlinkPath); pollution: fd pollution: newSize extern int ftruncate(int fd, off_t newSize); pollution: path pollution: newSize extern int truncate(const char *path, off_t newSize); pollution: fd pollution: cmd pollution: argument pollution: size extern int __ioctl(int fd, ulong cmd, void* argument, size_t size); pollution: fd pollution: op pollution: ioctl extern int ioctl(int fd, unsigned long op, ...); pollution: fd pollution: buffer pollution: count extern ssize_t read(int fd, void *buffer, size_t count); pollution: fd pollution: pos pollution: buffer pollution: count pollution: read_pos extern ssize_t read_pos(int fd, off_t pos, void *buffer, size_t count); pollution: fd pollution: buffer pollution: count pollution: pos extern ssize_t pread(int fd, void *buffer, size_t count, off_t pos); pollution: fd pollution: buffer pollution: count extern ssize_t write(int fd, const void *buffer, size_t count); pollution: fd pollution: pos pollution: buffer pollution: count pollution: write_pos extern ssize_t write_pos(int fd, off_t pos, const void *buffer,size_t count); pollution: fd pollution: buffer pollution: count pollution: pos extern ssize_t pwrite(int fd, const void *buffer, size_t count, off_t pos); pollution: fd pollution: offset pollution: whence extern off_t lseek(int fd, off_t offset, int whence); pollution: sync extern void sync(void); pollution: fd extern int fsync(int fd); pollution: fd extern int fdatasync(int fd); pollution: path pollution: owner pollution: group extern int chown(const char *path, uid_t owner, gid_t group); pollution: fd pollution: owner pollution: group extern int fchown(int fd, uid_t owner, gid_t group); pollution: path pollution: owner pollution: group extern int lchown(const char *path, uid_t owner, gid_t group); pollution: fd pollution: path pollution: owner pollution: group pollution: flag extern int fchownat(int fd, const char *path, uid_t owner, gid_t group, int flag); pollution: getpagesize extern int getpagesize(void); pollution: getdtablesize extern int getdtablesize(void); pollution: name extern long sysconf(int name); pollution: fd pollution: name extern long fpathconf(int fd, int name); pollution: path pollution: name extern long pathconf(const char *path, int name); pollution: name pollution: buf pollution: len extern size_t confstr(int name, char *buf, size_t len); pollution: fd pollution: function pollution: size pollution: lockf extern int lockf(int fd, int function, off_t size); pollution: vfork extern pid_t vfork(void); pollution: path pollution: argv pollution: environment extern int execve(const char *path, char * const argv[], char *const environment[]); pollution: path pollution: arg extern int execl(const char *path, const char *arg, ...); pollution: path pollution: argv extern int execv(const char *path, char *const argv[]); pollution: file pollution: arg extern int execlp(const char *file, const char *arg, ...); pollution: path pollution: arg extern int execle(const char *path, const char *arg , ... ); pollution: file pollution: argv extern int execvp(const char *file, char *const argv[]); pollution: file pollution: argv pollution: environment pollution: execvpe extern int execvpe(const char *file, char *const argv[], char *const environment[]); pollution: status extern void _exit(int status) __attribute__ ((noreturn)); pollution: fd extern pid_t tcgetpgrp(int fd); pollution: fd pollution: pgrpid extern int tcsetpgrp(int fd, pid_t pgrpid); pollution: addr pollution: brk extern int brk(void *addr); pollution: increment pollution: sbrk extern void *sbrk(intptr_t increment); pollution: seconds extern unsigned int alarm(unsigned int seconds); pollution: microSeconds pollution: interval pollution: ualarm extern useconds_t ualarm(useconds_t microSeconds, useconds_t interval); pollution: seconds extern unsigned int sleep(unsigned int seconds); pollution: microSeconds pollution: usleep extern int usleep(unsigned int microSeconds); pollution: pgid extern int setpgid(pid_t pid, pid_t pgid); pollution: setpgrp extern pid_t setpgrp(void); pollution: path pollution: chroot extern int chroot(const char *path); pollution: incr pollution: nice extern int nice(int incr); pollution: gid extern int setgid(gid_t gid); pollution: uid extern int setuid(uid_t uid); pollution: gid extern int setegid(gid_t gid); pollution: uid extern int seteuid(uid_t uid); pollution: rgid pollution: egid pollution: setregid extern int setregid(gid_t rgid, gid_t egid); pollution: ruid pollution: euid pollution: setreuid extern int setreuid(uid_t ruid, uid_t euid); pollution: user pollution: baseGroup pollution: groupList pollution: groupCount pollution: getgrouplist extern int getgrouplist(const char* user, gid_t baseGroup, gid_t* groupList, int* groupCount); pollution: groupCount pollution: groupList extern int getgroups(int groupCount, gid_t groupList[]); pollution: user pollution: baseGroup pollution: initgroups extern int initgroups(const char* user, gid_t baseGroup); pollution: groupCount pollution: groupList pollution: setgroups extern int setgroups(int groupCount, const gid_t* groupList); pollution: name pollution: nameSize extern int getlogin_r(char *name, size_t nameSize); pollution: hostName pollution: nameSize pollution: sethostname extern int sethostname(const char *hostName, size_t nameSize); pollution: hostName pollution: nameSize extern int gethostname(char *hostName, size_t nameSize); pollution: fd extern int isatty(int fd); pollution: fd extern char *ttyname(int fd); pollution: fd pollution: buffer pollution: bufferSize extern int ttyname_r(int fd, char *buffer, size_t bufferSize); pollution: key pollution: salt pollution: crypt extern char *crypt(const char *key, const char *salt); pollution: block pollution: edflag extern void encrypt(char block[64], int edflag); pollution: argc pollution: argv pollution: shortOpts extern int getopt(int argc, char *const *argv, const char *shortOpts); pollution: src pollution: dest pollution: nbytes pollution: swab extern void swab(const void *src, void *dest, ssize_t nbytes); pollution: buf pollution: buflen int getentropy(void *buf, size_t buflen); pollution: path pollution: mode extern int creat(const char *path, mode_t mode); pollution: path pollution: openMode extern int open(const char *path, int openMode, ...); pollution: fd pollution: path pollution: openMode extern int openat(int fd, const char *path, int openMode, ...); pollution: fd pollution: op extern int fcntl(int fd, int op, ...); pollution: fd pollution: offset pollution: len pollution: advice extern int posix_fadvise(int fd, off_t offset, off_t len, int advice); pollution: fd pollution: offset pollution: len extern int posix_fallocate(int fd, off_t offset, off_t len); pollution: named_sem_id int32_t named_sem_id; pollution: unnamed_sem int32_t unnamed_sem; pollution: u union { int32_t named_sem_id; int32_t unnamed_sem; } u; pollution: padding int32_t padding[2]; pollution: name pollution: openFlags sem_t* sem_open(const char* name, int openFlags,...); pollution: semaphore int sem_close(sem_t* semaphore); pollution: name int sem_unlink(const char* name); pollution: semaphore pollution: shared pollution: value int sem_init(sem_t* semaphore, int shared, unsigned value); pollution: semaphore int sem_destroy(sem_t* semaphore); pollution: semaphore int sem_post(sem_t* semaphore); pollution: semaphore pollution: abstime int sem_clockwait(sem_t* semaphore, clockid_t clock_id, const struct timespec* abstime); pollution: semaphore pollution: abstime int sem_timedwait(sem_t* semaphore, const struct timespec* abstime); pollution: semaphore int sem_trywait(sem_t* semaphore); pollution: semaphore int sem_wait(sem_t* semaphore); pollution: semaphore pollution: value int sem_getvalue(sem_t* semaphore, int* value); pollution: ACCESSPERMS #define ACCESSPERMS (S_IRWXU | S_IRWXG | S_IRWXO) pollution: B_DEFINE_WEAK_ALIAS #define B_DEFINE_WEAK_ALIAS(name,alias_name) __typeof(name) alias_name __attribute__((weak, alias(#name))) pollution: B_HAIKU_64_BIT #define B_HAIKU_64_BIT 1 pollution: ioctl #define ioctl(...) _IOCTL(__VA_ARGS__, _IOCTL4, _IOCTL3, _IOCTL2)(__VA_ARGS__) pollution: CLK_TCK #define CLK_TCK CLOCKS_PER_SEC pollution: B_HAIKU_PHYSICAL_BITS #define B_HAIKU_PHYSICAL_BITS __HAIKU_ARCH_PHYSICAL_BITS pollution: B_BEOS_VERSION_4_5 #define B_BEOS_VERSION_4_5 0x0450 pollution: DEFFILEMODE #define DEFFILEMODE (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH) pollution: B_HAIKU_BITS #define B_HAIKU_BITS __HAIKU_ARCH_BITS pollution: B_BEOS_VERSION_5 #define B_BEOS_VERSION_5 0x0500 pollution: B_BEOS_VERSION_MAUI #define B_BEOS_VERSION_MAUI B_BEOS_VERSION_5 pollution: CLOSE_RANGE_CLOEXEC #define CLOSE_RANGE_CLOEXEC 0x4 pollution: B_HAIKU_VERSION_1_PRE_BETA_2 #define B_HAIKU_VERSION_1_PRE_BETA_2 0x00000501 pollution: B_HAIKU_VERSION_1_PRE_BETA_3 #define B_HAIKU_VERSION_1_PRE_BETA_3 0x00000601 pollution: B_HAIKU_VERSION_1_PRE_BETA_4 #define B_HAIKU_VERSION_1_PRE_BETA_4 0x00000701 pollution: B_HAIKU_VERSION_1_PRE_BETA_5 #define B_HAIKU_VERSION_1_PRE_BETA_5 0x00000801 pollution: B_HAIKU_VERSION_1_PRE_BETA_6 #define B_HAIKU_VERSION_1_PRE_BETA_6 0x00000901 pollution: B_HAIKU_VERSION #define B_HAIKU_VERSION B_HAIKU_VERSION_1_PRE_BETA_6 pollution: ALLPERMS #define ALLPERMS (S_ISUID | S_ISGID | S_ISVTX | S_IRWXU | S_IRWXG | S_IRWXO) pollution: B_HAIKU_ABI_NAME #define B_HAIKU_ABI_NAME __HAIKU_ARCH_ABI pollution: B_DEFINE_SYMBOL_VERSION #define B_DEFINE_SYMBOL_VERSION(function,versionedSymbol) __asm__(".symver " function "," versionedSymbol) pollution: B_HAIKU_ABI_GCC_2 #define B_HAIKU_ABI_GCC_2 0x00020000 pollution: B_HAIKU_ABI_GCC_4 #define B_HAIKU_ABI_GCC_4 0x00040000 pollution: B_HAIKU_PHYSICAL_64_BIT #define B_HAIKU_PHYSICAL_64_BIT 1 pollution: B_HAIKU_VERSION_DANO #define B_HAIKU_VERSION_DANO 0x00000003 pollution: B_HAIKU_VERSION_1_PRE_ALPHA_2 #define B_HAIKU_VERSION_1_PRE_ALPHA_2 0x00000101 pollution: B_HAIKU_VERSION_1_PRE_ALPHA_3 #define B_HAIKU_VERSION_1_PRE_ALPHA_3 0x00000201 pollution: B_HAIKU_VERSION_1_PRE_ALPHA_4 #define B_HAIKU_VERSION_1_PRE_ALPHA_4 0x00000301 pollution: B_HAIKU_VERSION_1_PRE_BETA_1 #define B_HAIKU_VERSION_1_PRE_BETA_1 0x00000401 pollution: B_HAIKU_VERSION_1_ALPHA_1 #define B_HAIKU_VERSION_1_ALPHA_1 0x00000100 pollution: B_HAIKU_VERSION_1_ALPHA_2 #define B_HAIKU_VERSION_1_ALPHA_2 0x00000200 pollution: B_HAIKU_VERSION_1_ALPHA_4 #define B_HAIKU_VERSION_1_ALPHA_4 0x00000400 pollution: B_HAIKU_VERSION_1_BETA_1 #define B_HAIKU_VERSION_1_BETA_1 0x00000500 pollution: B_HAIKU_ABI_GCC_2_HAIKU #define B_HAIKU_ABI_GCC_2_HAIKU 0x00020002 pollution: B_HAIKU_ABI_GCC_2_BEOS #define B_HAIKU_ABI_GCC_2_BEOS 0x00020001 pollution: B_BEOS_VERSION #define B_BEOS_VERSION B_BEOS_VERSION_5 pollution: B_HAIKU_VERSION_1_ALPHA_3 #define B_HAIKU_VERSION_1_ALPHA_3 0x00000300 pollution: CLOCKS_PER_SEC #define CLOCKS_PER_SEC 1000000 pollution: B_HAIKU_ABI #define B_HAIKU_ABI B_HAIKU_ABI_GCC_4 pollution: MAX_TIMESTR #define MAX_TIMESTR 70 pollution: B_HAIKU_ABI_GCC_2_ANCIENT #define B_HAIKU_ABI_GCC_2_ANCIENT 0x00020000 pollution: B_HAIKU_VERSION_1 #define B_HAIKU_VERSION_1 0x00010000 pollution: B_HAIKU_ABI_MAJOR #define B_HAIKU_ABI_MAJOR 0xffff0000 pollution: B_HAIKU_VERSION_1_BETA_2 #define B_HAIKU_VERSION_1_BETA_2 0x00000600 pollution: B_HAIKU_VERSION_1_BETA_3 #define B_HAIKU_VERSION_1_BETA_3 0x00000700 pollution: B_HAIKU_VERSION_1_BETA_4 #define B_HAIKU_VERSION_1_BETA_4 0x00000800 pollution: B_HAIKU_VERSION_1_BETA_5 #define B_HAIKU_VERSION_1_BETA_5 0x00000900