mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 04:27:45 +00:00
LibC: Add POSIX spec link for unistd mknod() API
This commit is contained in:
parent
d6432a3f99
commit
38472d7e02
1 changed files with 1 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue