diff options
Diffstat (limited to 'sys/arch/m88k/include/param.h')
-rw-r--r-- | sys/arch/m88k/include/param.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/arch/m88k/include/param.h b/sys/arch/m88k/include/param.h index f643deefa85..690629eb66c 100644 --- a/sys/arch/m88k/include/param.h +++ b/sys/arch/m88k/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.11 2007/12/05 22:12:32 miod Exp $ */ +/* $OpenBSD: param.h,v 1.12 2007/12/31 09:23:53 martin Exp $ */ /* * Copyright (c) 1999 Steve Murphree, Jr. * Copyright (c) 1988 University of Utah. @@ -99,10 +99,6 @@ #define ctod(x) ((x) << (PGSHIFT - DEV_BSHIFT)) #define dtoc(x) ((x) >> (PGSHIFT - DEV_BSHIFT)) -/* pages to bytes */ -#define ctob(x) ((x) << PGSHIFT) -#define btoc(x) (((x) + PGOFSET) >> PGSHIFT) - /* bytes to disk blocks */ #define btodb(x) ((x) >> DEV_BSHIFT) #define dbtob(x) ((x) << DEV_BSHIFT) |