diff options
author | Eric Andersen <andersen@codepoet.org> | 1999-10-19 20:03:34 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 1999-10-19 20:03:34 +0000 |
commit | e77ae3a2c0328590b43447550bdb1284650b8236 (patch) | |
tree | 1e46d5cf36870771a4f3cedfe84f6161c3871131 /coreutils/mkdir.c | |
parent | a3f09076ef5e9a2c26b4d0728cd066bba6c474e4 (diff) | |
download | busybox-w32-e77ae3a2c0328590b43447550bdb1284650b8236.tar.gz busybox-w32-e77ae3a2c0328590b43447550bdb1284650b8236.tar.bz2 busybox-w32-e77ae3a2c0328590b43447550bdb1284650b8236.zip |
Added sfdisk. Ststic-ified a bunch of stuff.
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"; |