Rev 3364 | Rev 3376 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3364 | Rev 3375 | ||
|---|---|---|---|
| Line 47... | Line 47... | ||
| 47 | 47 | ||
| 48 | #define MKDIR_VERSION "0.0.1" |
48 | #define MKDIR_VERSION "0.0.1" |
| 49 | 49 | ||
| 50 | static char *cmdname = "mkdir"; |
50 | static char *cmdname = "mkdir"; |
| 51 | 51 | ||
| 52 | static struct option long_options[] = { |
52 | static struct option const long_options[] = { |
| 53 | {"parents", no_argument, 0, 'p'}, |
53 | {"parents", no_argument, 0, 'p'}, |
| 54 | {"verbose", no_argument, 0, 'v'}, |
54 | {"verbose", no_argument, 0, 'v'}, |
| 55 | {"mode", required_argument, 0, 'm'}, |
55 | {"mode", required_argument, 0, 'm'}, |
| 56 | {"help", no_argument, 0, 'h'}, |
56 | {"help", no_argument, 0, 'h'}, |
| 57 | {"version", no_argument, 0, 'V'}, |
57 | {"version", no_argument, 0, 'V'}, |