diff options
Diffstat (limited to 'sys/arch/m68k/include')
-rw-r--r-- | sys/arch/m68k/include/param.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/m68k/include/param.h b/sys/arch/m68k/include/param.h index f5fe631af62..d1f75f458db 100644 --- a/sys/arch/m68k/include/param.h +++ b/sys/arch/m68k/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.13 2005/09/12 23:05:05 miod Exp $ */ +/* $OpenBSD: param.h,v 1.14 2005/09/15 18:52:43 martin Exp $ */ /* $NetBSD: param.h,v 1.2 1997/06/10 18:21:23 veego Exp $ */ /* @@ -140,8 +140,6 @@ */ #define m68k_round_seg(x) ((((unsigned)(x)) + SEGOFSET) & ~SEGOFSET) #define m68k_trunc_seg(x) ((unsigned)(x) & ~SEGOFSET) -#define m68k_round_page(x) ((((unsigned)(x)) + PGOFSET) & ~PGOFSET) -#define m68k_trunc_page(x) ((unsigned)(x) & ~PGOFSET) #define m68k_page_offset(x) ((unsigned)(x) & PGOFSET) #define m68k_btop(x) ((unsigned)(x) >> PGSHIFT) #define m68k_ptob(x) ((unsigned)(x) << PGSHIFT) |