summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2009-12-13 08:27:16 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2009-12-13 08:27:16 +0000
commit803edea5dae19e43cf6e8b294fb97f5ef42300ad (patch)
tree51c48ace1d817af3600a488b4598bef5af2c7443
parent96af82aa4cfcf2e07ccfcf14f9b99f88db8c23da (diff)
bit less aggressive about hiding; ok miod
-rw-r--r--sys/arch/mips64/include/param.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/mips64/include/param.h b/sys/arch/mips64/include/param.h
index 8cb792f08af..b461963ddfa 100644
--- a/sys/arch/mips64/include/param.h
+++ b/sys/arch/mips64/include/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.25 2009/12/12 20:10:22 miod Exp $ */
+/* $OpenBSD: param.h,v 1.26 2009/12/13 08:27:15 deraadt Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -92,6 +92,7 @@
/* Default malloc arena size */
#define NKMEMPAGES_MIN_DEFAULT ((8 * 1024 * 1024) >> PAGE_SHIFT)
#define NKMEMPAGES_MAX_DEFAULT ((128 * 1024 * 1024) >> PAGE_SHIFT)
+#endif /* _KERNEL */
/* pages ("clicks") (4096 bytes) to disk blocks */
#define ctod(x) ((x) << (PGSHIFT - DEV_BSHIFT))
@@ -101,8 +102,8 @@
#define btodb(x) ((x) >> DEV_BSHIFT)
#define dbtob(x) ((x) << DEV_BSHIFT)
+#ifdef _KERNEL
#ifndef _LOCORE
-
#define DELAY(n) delay(n)
void delay(int);
#endif