summaryrefslogtreecommitdiffstats
path: root/mille/mille.c
diff options
context:
space:
mode:
authorjtc <jtc@NetBSD.org>1997-05-23 23:09:36 +0000
committerjtc <jtc@NetBSD.org>1997-05-23 23:09:36 +0000
commit9853b17d101ca569d22656507e9da0092cfad0ff (patch)
tree21220576e4dd7b226094f1e9663f0e3b55186d70 /mille/mille.c
parentb218620de93fbebcfba8ec74b22d33986ba70b3f (diff)
downloadbsdgames-darwin-9853b17d101ca569d22656507e9da0092cfad0ff.tar.gz
bsdgames-darwin-9853b17d101ca569d22656507e9da0092cfad0ff.tar.zst
bsdgames-darwin-9853b17d101ca569d22656507e9da0092cfad0ff.zip
Change "reg" to "register"
Remove private implementation of erasechar() and killchar().
Diffstat (limited to 'mille/mille.c')
-rw-r--r--mille/mille.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/mille/mille.c b/mille/mille.c
index cc4a6ac8..6a6a0395 100644
--- a/mille/mille.c
+++ b/mille/mille.c
@@ -1,4 +1,4 @@
-/* $NetBSD: mille.c,v 1.4 1995/03/24 05:01:48 cgd Exp $ */
+/* $NetBSD: mille.c,v 1.5 1997/05/23 23:09:38 jtc Exp $ */
/*
* Copyright (c) 1982, 1993
@@ -43,7 +43,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)mille.c 8.1 (Berkeley) 5/31/93";
#else
-static char rcsid[] = "$NetBSD: mille.c,v 1.4 1995/03/24 05:01:48 cgd Exp $";
+static char rcsid[] = "$NetBSD: mille.c,v 1.5 1997/05/23 23:09:38 jtc Exp $";
#endif
#endif /* not lint */
@@ -60,10 +60,10 @@ static char rcsid[] = "$NetBSD: mille.c,v 1.4 1995/03/24 05:01:48 cgd Exp $";
void rub();
main(ac, av)
-reg int ac;
-reg char *av[]; {
-
- reg bool restore;
+register int ac;
+register char *av[];
+{
+ register bool restore;
/* run as the user */
setuid(getuid());