diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-04-05 16:04:18 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-04-05 16:04:18 +0000 |
commit | b379106f42e39d77dcc563db6fbc48b4e47d06d5 (patch) | |
tree | c4acb4ddda473281aa1bcaa9723f69dc94059d8e /sys/arch | |
parent | fa93e63b7fd7c6ed472f8180c637bff65d4b186a (diff) |
delete userland DELAY() version; ok miod
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/mips64/include/param.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/arch/mips64/include/param.h b/sys/arch/mips64/include/param.h index 77096393731..8b8bcadaa18 100644 --- a/sys/arch/mips64/include/param.h +++ b/sys/arch/mips64/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.14 2006/03/19 01:47:24 martin Exp $ */ +/* $OpenBSD: param.h,v 1.15 2007/04/05 16:04:17 deraadt Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -131,9 +131,6 @@ void delay(int); void nanodelay(int); #endif - -#else /* !_KERNEL */ -#define DELAY(n) { int N = (n); while (--N > 0); } #endif /* !_KERNEL */ #endif /* !_MIPS_PARAM_H_ */ |