1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:47:36 +00:00

LibC: Remove some functions we had two of

This commit is contained in:
Andreas Kling 2019-12-27 16:54:41 +01:00
parent cbdd65e4d9
commit 4d997308c2
2 changed files with 0 additions and 34 deletions

View file

@ -225,11 +225,6 @@ pid_t waitpid(pid_t waitee, int* wstatus, int options)
__RETURN_WITH_ERRNO(rc, rc, -1);
}
pid_t wait(int* wstatus)
{
return waitpid(-1, wstatus, 0);
}
int lstat(const char* path, struct stat* statbuf)
{
int rc = syscall(SC_lstat, path, statbuf);