diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-11-21 15:28:26 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-11-21 15:28:26 +0000 |
commit | 34419f829468dc245b1caf05922db5c2778b7c50 (patch) | |
tree | 6c8ac650fbc31bce7771282050b4bb871624abf1 | |
parent | 3ea365209fd12647ace5a157cbf019cf85ed80d0 (diff) |
Fix extern decl of version missed in previous commit.
-rw-r--r-- | usr.bin/mail/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/mail/main.c b/usr.bin/mail/main.c index a10237355ab..e98ca244343 100644 --- a/usr.bin/mail/main.c +++ b/usr.bin/mail/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.16 2001/11/21 15:26:39 millert Exp $ */ +/* $OpenBSD: main.c,v 1.17 2001/11/21 15:28:25 millert Exp $ */ /* $NetBSD: main.c,v 1.7 1997/05/13 06:15:57 mikel Exp $ */ /* @@ -44,7 +44,7 @@ static const char copyright[] = #if 0 static const char sccsid[] = "@(#)main.c 8.2 (Berkeley) 4/20/95"; #else -static const char rcsid[] = "$OpenBSD: main.c,v 1.16 2001/11/21 15:26:39 millert Exp $"; +static const char rcsid[] = "$OpenBSD: main.c,v 1.17 2001/11/21 15:28:25 millert Exp $"; #endif #endif /* not lint */ @@ -71,7 +71,7 @@ main(int argc, char **argv) char *ef; char nosrc = 0; char *rc; - extern char *version; + extern const char version[]; /* * Set up a reasonable environment. |