=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ar/Attic/ar.c,v retrieving revision 1.10 retrieving revision 1.11 diff -c -r1.10 -r1.11 *** src/usr.bin/ar/Attic/ar.c 2003/06/03 02:56:05 1.10 --- src/usr.bin/ar/Attic/ar.c 2003/06/12 20:58:08 1.11 *************** *** 1,4 **** ! /* $OpenBSD: ar.c,v 1.10 2003/06/03 02:56:05 millert Exp $ */ /* $NetBSD: ar.c,v 1.5 1995/03/26 03:27:44 glass Exp $ */ /*- --- 1,4 ---- ! /* $OpenBSD: ar.c,v 1.11 2003/06/12 20:58:08 deraadt Exp $ */ /* $NetBSD: ar.c,v 1.5 1995/03/26 03:27:44 glass Exp $ */ /*- *************** *** 43,49 **** #if 0 static char sccsid[] = "@(#)ar.c 8.3 (Berkeley) 4/2/94"; #else ! static char rcsid[] = "$OpenBSD: ar.c,v 1.10 2003/06/03 02:56:05 millert Exp $"; #endif #endif /* not lint */ --- 43,49 ---- #if 0 static char sccsid[] = "@(#)ar.c 8.3 (Berkeley) 4/2/94"; #else ! static char rcsid[] = "$OpenBSD: ar.c,v 1.11 2003/06/12 20:58:08 deraadt Exp $"; #endif #endif /* not lint */ *************** *** 74,82 **** * option parsing and sanity checking. */ int ! main(argc, argv) ! int argc; ! char **argv; { int c; char *p; --- 74,80 ---- * option parsing and sanity checking. */ int ! main(int argc, char *argv[]) { int c; char *p; *************** *** 215,222 **** } static void ! badoptions(arg) ! char *arg; { warnx("illegal option combination for %s", arg); --- 213,219 ---- } static void ! badoptions(char *arg) { warnx("illegal option combination for %s", arg); *************** *** 224,230 **** } static void ! usage() { (void)fprintf(stderr, "usage: ar -d [-Tv] archive file ...\n"); --- 221,227 ---- } static void ! usage(void) { (void)fprintf(stderr, "usage: ar -d [-Tv] archive file ...\n");