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 /dutmp.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 'dutmp.c')
-rw-r--r-- | dutmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14,12 +14,12 @@ | |||
14 | #include <stdio.h> | 14 | #include <stdio.h> |
15 | #include <utmp.h> | 15 | #include <utmp.h> |
16 | 16 | ||
17 | const char dutmp_usage[] = "dutmp\n" | 17 | static const char dutmp_usage[] = "dutmp\n" |
18 | "\n" | 18 | "\n" |
19 | "\tDump file or stdin utmp file format to stdout, pipe delimited.\n" | 19 | "\tDump file or stdin utmp file format to stdout, pipe delimited.\n" |
20 | "\tdutmp /var/run/utmp\n"; | 20 | "\tdutmp /var/run/utmp\n"; |
21 | 21 | ||
22 | extern int dutmp_fn (int argc, char **argv) | 22 | static int dutmp_main (int argc, char **argv) |
23 | { | 23 | { |
24 | 24 | ||
25 | FILE *f = stdin; | 25 | FILE *f = stdin; |