12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- 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[]);
|