123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- int close(int fd);
- ssize_t read(int fd, void *buf, size_t count);
- ssize_t write(int fd, void const *buf, size_t count);
- off_t lseek(int fd, off_t offset, int whence);
- pid_t fork(void);
- pid_t vfork(void);
- uint64_t brk(uint64_t end_brk);
- void *sbrk(int64_t increment);
- int64_t chdir(char *dest_path);
- int execv(const char *path, char *const argv[]);
- extern int usleep(useconds_t usec);
- int rmdir(const char *path);
- void swab(void *restrict src, void *restrict dest, ssize_t nbytes);
|