diff options
| author | jtc <jtc@NetBSD.org> | 1994-11-17 07:39:34 +0000 |
|---|---|---|
| committer | jtc <jtc@NetBSD.org> | 1994-11-17 07:39:34 +0000 |
| commit | 88d0435bc75edc99c6b01d0b57e4fc3bd67dbe01 (patch) | |
| tree | c5407fe8a55ab710b69f1c2539d1e321c2ae331d /usr.bin/uuencode/uuencode.c | |
| parent | a8bfd3d17acdf360bcfa394c375f8a39cfc31df4 (diff) | |
Merged with 4.4lite.
Changed to conform to NetBSD's new RCS Id convention.
Diffstat (limited to 'usr.bin/uuencode/uuencode.c')
| -rw-r--r-- | usr.bin/uuencode/uuencode.c | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/usr.bin/uuencode/uuencode.c b/usr.bin/uuencode/uuencode.c index 85760ab5b3f..bacac9f17df 100644 --- a/usr.bin/uuencode/uuencode.c +++ b/usr.bin/uuencode/uuencode.c @@ -1,6 +1,8 @@ -/* - * Copyright (c) 1983 Regents of the University of California. - * All rights reserved. +/* $NetBSD: uuencode.c,v 1.6 1994/11/17 07:39:43 jtc Exp $ */ + +/*- + * Copyright (c) 1983, 1993 + * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -31,9 +33,16 @@ * SUCH DAMAGE. */ +char copyright[] = +"@(#) Copyright (c) 1983, 1993\n\ + The Regents of the University of California. All rights reserved.\n"; +#endif /* not lint */ + #ifndef lint -/*static char sccsid[] = "from: @(#)uuencode.c 5.9 (Berkeley) 6/1/90";*/ -static char rcsid[] = "$Id: uuencode.c,v 1.5 1993/11/09 01:47:00 jtc Exp $"; +#if 0 +static char sccsid[] = "@(#)uuencode.c 8.2 (Berkeley) 4/2/94"; +#endif +static char rcsid[] = "$NetBSD: uuencode.c,v 1.6 1994/11/17 07:39:43 jtc Exp $"; #endif /* not lint */ /* @@ -56,7 +65,7 @@ static __dead void usage(); int main(argc, argv) int argc; - char **argv; + char *argv[]; { struct stat sb; int mode; |
