=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/uname/uname.c,v retrieving revision 1.5 retrieving revision 1.6 diff -c -r1.5 -r1.6 *** src/usr.bin/uname/uname.c 2001/07/12 05:17:27 1.5 --- src/usr.bin/uname/uname.c 2002/09/17 19:37:40 1.6 *************** *** 1,4 **** ! /* $OpenBSD: uname.c,v 1.5 2001/07/12 05:17:27 deraadt Exp $ */ /* * Copyright (c) 1994 Winning Strategies, Inc. --- 1,4 ---- ! /* $OpenBSD: uname.c,v 1.6 2002/09/17 19:37:40 deraadt Exp $ */ /* * Copyright (c) 1994 Winning Strategies, Inc. *************** *** 32,38 **** */ #ifndef lint ! static char rcsid[] = "$OpenBSD: uname.c,v 1.5 2001/07/12 05:17:27 deraadt Exp $"; #endif /* not lint */ #include --- 32,38 ---- */ #ifndef lint ! static char rcsid[] = "$OpenBSD: uname.c,v 1.6 2002/09/17 19:37:40 deraadt Exp $"; #endif /* not lint */ #include *************** *** 54,62 **** #define PRINT_PROCESSOR 0x20 int ! main(argc, argv) ! int argc; ! char **argv; { struct utsname u; int c; --- 54,60 ---- #define PRINT_PROCESSOR 0x20 int ! main(int argc, char *argv[]) { struct utsname u; int c; *************** *** 148,154 **** } static void ! usage() { fprintf(stderr, "usage: uname [-amnprsv]\n"); exit(1); --- 146,152 ---- } static void ! usage(void) { fprintf(stderr, "usage: uname [-amnprsv]\n"); exit(1);