=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/finger/finger.c,v retrieving revision 1.2 retrieving revision 1.3 diff -c -r1.2 -r1.3 *** src/usr.bin/finger/finger.c 1996/06/26 05:33:16 1.2 --- src/usr.bin/finger/finger.c 1996/08/30 11:39:36 1.3 *************** *** 1,4 **** ! /* $OpenBSD: finger.c,v 1.2 1996/06/26 05:33:16 deraadt Exp $ */ /* * Copyright (c) 1989 The Regents of the University of California. --- 1,4 ---- ! /* $OpenBSD: finger.c,v 1.3 1996/08/30 11:39:36 deraadt Exp $ */ /* * Copyright (c) 1989 The Regents of the University of California. *************** *** 48,54 **** #ifndef lint /*static char sccsid[] = "from: @(#)finger.c 5.22 (Berkeley) 6/29/90";*/ ! static char rcsid[] = "$OpenBSD: finger.c,v 1.2 1996/06/26 05:33:16 deraadt Exp $"; #endif /* not lint */ /* --- 48,54 ---- #ifndef lint /*static char sccsid[] = "from: @(#)finger.c 5.22 (Berkeley) 6/29/90";*/ ! static char rcsid[] = "$OpenBSD: finger.c,v 1.3 1996/08/30 11:39:36 deraadt Exp $"; #endif /* not lint */ /* *************** *** 74,79 **** --- 74,83 ---- int lflag, sflag, mflag, pplan; char tbuf[1024]; + int loginlist __P((void)); + void userlist __P((int, char **)); + + int main(argc, argv) int argc; char **argv; *************** *** 137,142 **** --- 141,147 ---- exit(0); } + int loginlist() { register PERSON *pn; *************** *** 164,169 **** --- 169,175 ---- enter_lastlog(pn); } + void userlist(argc, argv) register argc; register char **argv;