diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-11-23 03:28:24 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-11-23 03:28:24 +0000 |
commit | d9c2b5c6448be6a44aca21c85647578c222a908e (patch) | |
tree | 08d71b2f1e6c98a98473a2bb9fa27b659627890e /sys/arch/hppa/include/asm.h | |
parent | adb785d32896904d4109ff3bc127e71f85e5d61e (diff) |
proper m-include protection, some minor cleanups
Diffstat (limited to 'sys/arch/hppa/include/asm.h')
-rw-r--r-- | sys/arch/hppa/include/asm.h | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/sys/arch/hppa/include/asm.h b/sys/arch/hppa/include/asm.h index ecb52da9d7f..db42d32ea91 100644 --- a/sys/arch/hppa/include/asm.h +++ b/sys/arch/hppa/include/asm.h @@ -1,4 +1,4 @@ -/* $OpenBSD: asm.h,v 1.3 1998/08/29 01:11:05 mickey Exp $ */ +/* $OpenBSD: asm.h,v 1.4 1998/11/23 03:28:22 mickey Exp $ */ /* * Copyright (c) 1990,1991,1994 The University of Utah and @@ -22,19 +22,13 @@ * Utah $Hdr: asm.h 1.8 94/12/14$ */ -#ifndef _HPPA_ASM_H_ -#define _HPPA_ASM_H_ +#ifndef _MACHINE_ASM_H_ +#define _MACHINE_ASM_H_ /* * hppa assembler definitions */ -/* - * Roundup() - rounds up x to next multiple of y - */ - -#define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y)) - /* * Hardware General Registers */ @@ -344,4 +338,4 @@ tf4 .reg %fr8 .exit !\ .procend -#endif /* _HPPA_ASM_H_ */ +#endif /* _MACHINE_ASM_H_ */ |