diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 1999-10-19 20:03:34 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 1999-10-19 20:03:34 +0000 |
commit | d62f7703c40301ce8368a5b5380ac38a73c7e4b8 (patch) | |
tree | 1e46d5cf36870771a4f3cedfe84f6161c3871131 /coreutils/mkdir.c | |
parent | a2b5a151efb406f9df569db2c79b090ea57f5ca2 (diff) | |
download | busybox-w32-d62f7703c40301ce8368a5b5380ac38a73c7e4b8.tar.gz busybox-w32-d62f7703c40301ce8368a5b5380ac38a73c7e4b8.tar.bz2 busybox-w32-d62f7703c40301ce8368a5b5380ac38a73c7e4b8.zip |
Added sfdisk. Ststic-ified a bunch of stuff.
git-svn-id: svn://busybox.net/trunk/busybox@38 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/mkdir.c')
-rw-r--r-- | coreutils/mkdir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/mkdir.c b/coreutils/mkdir.c index b42899a4a..cf65f272f 100644 --- a/coreutils/mkdir.c +++ b/coreutils/mkdir.c | |||
@@ -24,7 +24,7 @@ | |||
24 | #include <errno.h> | 24 | #include <errno.h> |
25 | #include <sys/param.h> | 25 | #include <sys/param.h> |
26 | 26 | ||
27 | const char mkdir_usage[] = "Usage: mkdir [OPTION] DIRECTORY...\n" | 27 | static const char mkdir_usage[] = "Usage: mkdir [OPTION] DIRECTORY...\n" |
28 | "Create the DIRECTORY(ies), if they do not already exist\n\n" | 28 | "Create the DIRECTORY(ies), if they do not already exist\n\n" |
29 | "-m\tset permission mode (as in chmod), not rwxrwxrwx - umask\n" | 29 | "-m\tset permission mode (as in chmod), not rwxrwxrwx - umask\n" |
30 | "-p\tno error if existing, make parent directories as needed\n"; | 30 | "-p\tno error if existing, make parent directories as needed\n"; |