summaryrefslogtreecommitdiff
path: root/static/v10/man2/mkdir.2
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-26 16:38:00 -0400
committerJacob McDonnell <jacob@jacobmcdonnell.com>2026-04-26 16:38:00 -0400
commit97d5c458cfa039d857301e1ca7d5af3beb37131d (patch)
treeb460cd850d0537eb71806ba30358840377b27688 /static/v10/man2/mkdir.2
parentb89dc2331a50c63f8b33272a5c4c61ab98abdaa3 (diff)
build: Better Build System
Diffstat (limited to 'static/v10/man2/mkdir.2')
-rw-r--r--static/v10/man2/mkdir.268
1 files changed, 0 insertions, 68 deletions
diff --git a/static/v10/man2/mkdir.2 b/static/v10/man2/mkdir.2
deleted file mode 100644
index 5af01904..00000000
--- a/static/v10/man2/mkdir.2
+++ /dev/null
@@ -1,68 +0,0 @@
-.TH MKDIR 2
-.CT 2 dirs
-.SH NAME
-mkdir, rmdir \(mi make or remove a directory
-.SH SYNOPSIS
-.nf
-.B int mkdir(name, mode)
-.B char *name;
-.sp
-.B int rmdir(name)
-.B char *name;
-.fi
-.SH DESCRIPTION
-.I Mkdir
-creates a new directory
-whose name is the null-terminated string
-pointed to by
-.IR name .
-The mode of the directory
-is set to
-.IR mode ,
-as modified by the process's mode mask (see
-.IR stat (2)
-and
-.IR umask (2)).
-The directory initially contains two entries:
-.B .
-(a link to the directory itself) and
-.B ..
-(a link to the parent directory).
-.PP
-If the
-.I mode
-includes
-.BR S_IBLIND ,
-the directory is `blind'.
-A blind directory cannot be read, and
-its security label is not checked when the
-directory is searched.
-.PP
-.I Rmdir
-removes the directory
-.IR name ,
-which must only have the entries
-.L \&.
-and
-.LR \&.. .
-.SH "SEE ALSO
-.IR mkdir (1),
-.IR rm (1),
-.IR mknod (2)
-.SH DIAGNOSTICS
-.B EEXIST
-.RI ( mkdir
-only),
-.BR EFAULT ,
-.B EHASF
-.RI ( rmdir
-only),
-.B EINVAL
-.RI ( rmdir
-only),
-.BR EIO ,
-.BR ELAB ,
-.BR ELOOP ,
-.BR ENOENT ,
-.BR ENOTDIR ,
-.BR EROFS