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

LibC: Add realpath

This commit is contained in:
Rok Povsic 2019-08-25 18:17:31 +02:00 committed by Andreas Kling
parent 18fbe4ac83
commit 2ca8158a73
2 changed files with 19 additions and 0 deletions

View file

@ -103,6 +103,7 @@ int halt();
int reboot();
int mount(const char* device, const char* mountpoint, const char* fstype);
int umount(const char* mountpoint);
char* realpath(const char* pathname, char* buffer);
enum {
_PC_NAME_MAX,