diff options
author | Eric Andersen | 1999-10-19 20:03:34 +0000 |
---|---|---|
committer | Eric Andersen | 1999-10-19 20:03:34 +0000 |
commit | e77ae3a2c0328590b43447550bdb1284650b8236 (patch) | |
tree | 1e46d5cf36870771a4f3cedfe84f6161c3871131 /miscutils/dutmp.c | |
parent | a3f09076ef5e9a2c26b4d0728cd066bba6c474e4 (diff) | |
download | busybox-e77ae3a2c0328590b43447550bdb1284650b8236.zip busybox-e77ae3a2c0328590b43447550bdb1284650b8236.tar.gz |
Added sfdisk. Ststic-ified a bunch of stuff.
Diffstat (limited to 'miscutils/dutmp.c')
-rw-r--r-- | miscutils/dutmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miscutils/dutmp.c b/miscutils/dutmp.c index 7dd5b91..c5307b6 100644 --- a/miscutils/dutmp.c +++ b/miscutils/dutmp.c @@ -14,12 +14,12 @@ #include <stdio.h> #include <utmp.h> -const char dutmp_usage[] = "dutmp\n" +static const char dutmp_usage[] = "dutmp\n" "\n" "\tDump file or stdin utmp file format to stdout, pipe delimited.\n" "\tdutmp /var/run/utmp\n"; -extern int dutmp_fn (int argc, char **argv) +static int dutmp_main (int argc, char **argv) { FILE *f = stdin; |