diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-13 23:54:04 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-13 23:54:04 +0000 |
commit | 3045f0573e3ce834b83de1532157108acab288bf (patch) | |
tree | d5d992e9e2ee2a2a8cad7c33e932d578e534ec39 /usr.bin/mail/main.c | |
parent | 2d6105231faa533243032ed02e9aeaf5e0ce50a0 (diff) |
bcopy() -> memcpy() and fix some casts.
Diffstat (limited to 'usr.bin/mail/main.c')
-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 bb867161101..f94308f2ec8 100644 --- a/usr.bin/mail/main.c +++ b/usr.bin/mail/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.5 1997/07/13 21:21:15 millert Exp $ */ +/* $OpenBSD: main.c,v 1.6 1997/07/13 23:54:00 millert Exp $ */ /* $NetBSD: main.c,v 1.7 1997/05/13 06:15:57 mikel Exp $ */ /* @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)main.c 8.2 (Berkeley) 4/20/95"; #else -static char rcsid[] = "$OpenBSD: main.c,v 1.5 1997/07/13 21:21:15 millert Exp $"; +static char rcsid[] = "$OpenBSD: main.c,v 1.6 1997/07/13 23:54:00 millert Exp $"; #endif #endif /* not lint */ @@ -79,7 +79,7 @@ main(argc, argv) * Figure out whether we are being run interactively, * start the SIGCHLD catcher, and so forth. */ - (void) signal(SIGCHLD, sigchild); + (void)signal(SIGCHLD, sigchild); if (isatty(0)) assign("interactive", ""); image = -1; |