diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 1999-07-07 23:16:42 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 1999-07-07 23:16:42 +0000 |
commit | aaa7e978ab0fa0994f3213dcc24473e15d9f39b4 (patch) | |
tree | b6f45f8e1777f13b012152bb277be68a7b9feb44 /sys/arch/mips | |
parent | 34764acc8b4206f9dbcf5ba62b0a86a075913962 (diff) |
define vaddr_t, paddr_t, vsize_t and psize_t
Diffstat (limited to 'sys/arch/mips')
-rw-r--r-- | sys/arch/mips/include/types.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/arch/mips/include/types.h b/sys/arch/mips/include/types.h index 2165a448941..cd29b7572fc 100644 --- a/sys/arch/mips/include/types.h +++ b/sys/arch/mips/include/types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: types.h,v 1.6 1999/01/27 04:46:06 imp Exp $ */ +/* $OpenBSD: types.h,v 1.7 1999/07/07 23:16:41 art Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -56,6 +56,11 @@ typedef struct label_t { typedef unsigned long vm_offset_t; typedef unsigned long vm_size_t; +typedef unsigned long vaddr_t; +typedef unsigned long paddr_t; +typedef unsigned long vsize_t; +typedef unsigned long psize_t; + /* * Basic integral types. Omit the typedef if * not possible for a machine/compiler combination. |