Lines Matching full:int
31 int close(int file);
32 ssize_t write(int file, const void *buffer, size_t count);
33 ssize_t read(int file, void *buffer, size_t count);
34 off_t lseek(int file, off_t offset, int whence);
35 int fsync(int fd);
36 int ftruncate(int fd, off_t length);
39 int fdatasync(int fd);
43 int rename(const char *old, const char *newp);
44 int unlink(const char *path);
45 int stat(const char *path, struct stat *buf);
46 int mkdir(const char *path, mode_t mode);
47 int rmdir(const char *path);
49 FUNC_NORETURN void _exit(int status);
52 static inline int gethostname(char *buf, size_t len) in gethostname()
61 int getopt(int argc, char *const argv[], const char *optstring);
63 extern int opterr, optind, optopt;
66 int getentropy(void *buffer, size_t length);
68 unsigned sleep(unsigned int seconds);
69 int usleep(useconds_t useconds);
71 size_t confstr(int name, char *buf, size_t len);
77 long sysconf(int opt);