=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/systat/vmstat.c,v retrieving revision 1.27 retrieving revision 1.28 diff -c -r1.27 -r1.28 *** src/usr.bin/systat/vmstat.c 2001/11/18 23:56:49 1.27 --- src/usr.bin/systat/vmstat.c 2001/11/19 19:02:16 1.28 *************** *** 1,4 **** ! /* $OpenBSD: vmstat.c,v 1.27 2001/11/18 23:56:49 deraadt Exp $ */ /* $NetBSD: vmstat.c,v 1.5 1996/05/10 23:16:40 thorpej Exp $ */ /*- --- 1,4 ---- ! /* $OpenBSD: vmstat.c,v 1.28 2001/11/19 19:02:16 mpech Exp $ */ /* $NetBSD: vmstat.c,v 1.5 1996/05/10 23:16:40 thorpej Exp $ */ /*- *************** *** 38,44 **** #if 0 static char sccsid[] = "@(#)vmstat.c 8.2 (Berkeley) 1/12/94"; #endif ! static char rcsid[] = "$OpenBSD: vmstat.c,v 1.27 2001/11/18 23:56:49 deraadt Exp $"; #endif /* not lint */ /* --- 38,44 ---- #if 0 static char sccsid[] = "@(#)vmstat.c 8.2 (Berkeley) 1/12/94"; #endif ! static char rcsid[] = "$OpenBSD: vmstat.c,v 1.28 2001/11/19 19:02:16 mpech Exp $"; #endif /* not lint */ /* *************** *** 305,311 **** void labelkre() { ! register int i, j; clear(); mvprintw(STATROW, STATCOL + 4, "users Load"); --- 305,311 ---- void labelkre() { ! int i, j; clear(); mvprintw(STATROW, STATCOL + 4, "users Load"); *************** *** 577,583 **** static int ucount() { ! register int nusers = 0; if (ut < 0) return (0); --- 577,583 ---- static int ucount() { ! int nusers = 0; if (ut < 0) return (0); *************** *** 594,600 **** int indx; { double t; ! register int i; t = 0; for (i = 0; i < CPUSTATES; i++) --- 594,600 ---- int indx; { double t; ! int i; t = 0; for (i = 0; i < CPUSTATES; i++) *************** *** 698,704 **** static void copyinfo(from, to) ! register struct Info *from, *to; { long *intrcnt; --- 698,704 ---- static void copyinfo(from, to) ! struct Info *from, *to; { long *intrcnt;