summaryrefslogtreecommitdiff
path: root/sys/arch/atari/include
diff options
context:
space:
mode:
authorleo <leo@NetBSD.org>1995-04-22 22:20:36 +0000
committerleo <leo@NetBSD.org>1995-04-22 22:20:36 +0000
commit8e56abf0fa2ff76c2030b33d34ee4f0f48752895 (patch)
tree3b59d0fea19b25b2eb3c08b351888494760ea554 /sys/arch/atari/include
parent3517d2e5ac868e28c258424cecc2ced1daa1a1cb (diff)
Define DELAY to call delay()
Diffstat (limited to 'sys/arch/atari/include')
-rw-r--r--sys/arch/atari/include/param.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/atari/include/param.h b/sys/arch/atari/include/param.h
index 2f8dbf1e92e..3245e8926f1 100644
--- a/sys/arch/atari/include/param.h
+++ b/sys/arch/atari/include/param.h
@@ -1,4 +1,4 @@
-/* $NetBSD: param.h,v 1.4 1995/03/30 06:01:16 leo Exp $ */
+/* $NetBSD: param.h,v 1.5 1995/04/22 22:20:36 leo Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -210,11 +210,11 @@
#define splx(s) (s & PSL_IPL ? _spl_no_check(s) : spl0())
#ifdef _KERNEL
-extern int cpuspeed;
void delay __P((int));
-void DELAY __P((int));
+
+#define DELAY(n) delay(n)
#else
#define DELAY(n) { register int N = (n); while (--N > 0); }
-#endif
+#endif /* _KERNEL */
#endif /* !_MACHINE_PARAM_H_ */