diff --git a/Userland/Libraries/LibC/unistd.cpp b/Userland/Libraries/LibC/unistd.cpp index 9e4d863e8f..b05f7e62e8 100644 --- a/Userland/Libraries/LibC/unistd.cpp +++ b/Userland/Libraries/LibC/unistd.cpp @@ -706,6 +706,7 @@ int access(const char* pathname, int mode) __RETURN_WITH_ERRNO(rc, rc, -1); } +// https://pubs.opengroup.org/onlinepubs/9699919799/functions/mknod.html int mknod(const char* pathname, mode_t mode, dev_t dev) { if (!pathname) {