summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k/include
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2003-10-08 19:10:06 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2003-10-08 19:10:06 +0000
commit0888c07c83975a2dc16a85a07d877c1287eac943 (patch)
treed4e4f15097bce21ab0cb6bfe9c7be5735d2a15a8 /sys/arch/mvme88k/include
parentf8cb272754987a802d76c977228ca08b8ac3cd9d (diff)
delay() is actually a void function.
Diffstat (limited to 'sys/arch/mvme88k/include')
-rw-r--r--sys/arch/mvme88k/include/param.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/include/param.h b/sys/arch/mvme88k/include/param.h
index 4b746b694c8..eb20fa85891 100644
--- a/sys/arch/mvme88k/include/param.h
+++ b/sys/arch/mvme88k/include/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.30 2003/08/10 07:26:33 miod Exp $ */
+/* $OpenBSD: param.h,v 1.31 2003/10/08 19:10:05 miod Exp $ */
/*
* Copyright (c) 1999 Steve Murphree, Jr.
* Copyright (c) 1988 University of Utah.
@@ -160,7 +160,7 @@
#include <machine/intr.h>
#ifdef _KERNEL
-extern int delay(int);
+extern void delay(int);
#define DELAY(x) delay(x)
extern int cputyp;