1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 22:17:43 +00:00

LibC: Add creat(), execvp() resolution, and exec*() environment inheritance.

This commit is contained in:
Andreas Kling 2019-03-27 01:39:13 +01:00
parent fb7c7829c2
commit 0c2face7b0
2 changed files with 29 additions and 4 deletions

View file

@ -48,6 +48,7 @@ int setuid(uid_t);
int setgid(gid_t);
pid_t tcgetpgrp(int fd);
int tcsetpgrp(int fd, pid_t pgid);
int creat(const char* path, mode_t);
int open(const char* path, int options, ...);
ssize_t read(int fd, void* buf, size_t count);
ssize_t write(int fd, const void* buf, size_t count);