1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:27:45 +00:00

Kernel: Add realpath syscall

This commit is contained in:
Rok Povsic 2019-08-25 18:17:05 +02:00 committed by Andreas Kling
parent 8f50d75184
commit 18fbe4ac83
4 changed files with 34 additions and 0 deletions

View file

@ -222,6 +222,7 @@ public:
int sys$halt();
int sys$reboot();
int sys$set_process_icon(int icon_id);
int sys$realpath(const char* pathname, char*, size_t);
static void initialize();