summaryrefslogtreecommitdiffstats
path: root/atc/input.c
diff options
context:
space:
mode:
authortls <tls@NetBSD.org>1997-01-13 06:50:25 +0000
committertls <tls@NetBSD.org>1997-01-13 06:50:25 +0000
commita1870bc7909b311399735583c9363b06af9b0a56 (patch)
treeae58cc3b9fc8e0e9a1fb4ef8e21503155c0e02e2 /atc/input.c
parentff661413fe2d73ce048a4c6a1f36601ae5d1f411 (diff)
downloadbsdgames-darwin-a1870bc7909b311399735583c9363b06af9b0a56.tar.gz
bsdgames-darwin-a1870bc7909b311399735583c9363b06af9b0a56.tar.zst
bsdgames-darwin-a1870bc7909b311399735583c9363b06af9b0a56.zip
bfunctions -> memfunctions
Diffstat (limited to 'atc/input.c')
-rw-r--r--atc/input.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/atc/input.c b/atc/input.c
index b932d47f..054e02fd 100644
--- a/atc/input.c
+++ b/atc/input.c
@@ -1,4 +1,4 @@
-/* $NetBSD: input.c,v 1.4 1995/04/27 21:22:24 mycroft Exp $ */
+/* $NetBSD: input.c,v 1.5 1997/01/13 06:50:25 tls Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -49,7 +49,7 @@
#if 0
static char sccsid[] = "@(#)input.c 8.1 (Berkeley) 5/31/93";
#else
-static char rcsid[] = "$NetBSD: input.c,v 1.4 1995/04/27 21:22:24 mycroft Exp $";
+static char rcsid[] = "$NetBSD: input.c,v 1.5 1997/01/13 06:50:25 tls Exp $";
#endif
#endif not lint
@@ -378,7 +378,7 @@ setplane(c)
pp = findplane(number(c));
if (pp == NULL)
return ("Unknown Plane");
- bcopy(pp, &p, sizeof (p));
+ memcpy(&p, pp, sizeof (p));
p.delayd = 0;
return (NULL);
}