diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2001-06-24 04:56:08 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2001-06-24 04:56:08 +0000 |
commit | 1da4eab2465802b9381fbe0da814e9e48f54a938 (patch) | |
tree | 68754ab25dbd027efd4d1d420e2fa1c4597b9ea3 /sys/arch/powerpc | |
parent | 3847ea43798944cb2f96f73df356af35516b05da (diff) |
Add systm.h for prototypes.
Diffstat (limited to 'sys/arch/powerpc')
-rw-r--r-- | sys/arch/powerpc/powerpc/bcopy.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/powerpc/powerpc/bcopy.c b/sys/arch/powerpc/powerpc/bcopy.c index 73045595528..8af73260f57 100644 --- a/sys/arch/powerpc/powerpc/bcopy.c +++ b/sys/arch/powerpc/powerpc/bcopy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bcopy.c,v 1.2 1996/12/28 06:21:37 rahnds Exp $ */ +/* $OpenBSD: bcopy.c,v 1.3 2001/06/24 04:56:07 drahn Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. * All rights reserved. @@ -37,7 +37,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)bcopy.c 5.11 (Berkeley) 6/21/91";*/ -static char *rcsid = "$Id: bcopy.c,v 1.2 1996/12/28 06:21:37 rahnds Exp $"; +static char *rcsid = "$Id: bcopy.c,v 1.3 2001/06/24 04:56:07 drahn Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/cdefs.h> @@ -45,6 +45,7 @@ static char *rcsid = "$Id: bcopy.c,v 1.2 1996/12/28 06:21:37 rahnds Exp $"; #include <string.h> */ #include <sys/types.h> +#include <sys/systm.h> /* * sizeof(word) MUST BE A POWER OF TWO |