1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 21:37:36 +00:00

Use Unix::stat for sys$lstat().

This commit is contained in:
Andreas Kling 2018-10-27 00:29:31 +02:00
parent 509e5f9952
commit 3db8d7ae1a
5 changed files with 9 additions and 22 deletions

View file

@ -89,7 +89,7 @@ public:
int sys$open(const char* path, size_t pathLength);
int sys$close(int fd);
int sys$read(int fd, void* outbuf, size_t nread);
int sys$lstat(const char*, void* statbuf);
int sys$lstat(const char*, Unix::stat*);
int sys$seek(int fd, int offset);
int sys$kill(pid_t pid, int sig);
int sys$geterror() { return m_error; }