diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2007-06-26 07:19:47 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2007-06-26 07:19:47 +0000 |
commit | 9995c9893bee649316849c61f370e08de02cf460 (patch) | |
tree | 7f5b4dc5abcd76aad2d250d23e2908b4d28e14db | |
parent | 79e8670a6f80635528b97ace9dfef6aea3df7cd2 (diff) |
- add daddr32_t and daddr64_t
- sync comment for daddr_t
-rw-r--r-- | share/man/man5/types.5 | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/share/man/man5/types.5 b/share/man/man5/types.5 index 8f1399e94b0..e13d5ce0189 100644 --- a/share/man/man5/types.5 +++ b/share/man/man5/types.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: types.5,v 1.13 2007/05/31 19:19:58 jmc Exp $ +.\" $OpenBSD: types.5,v 1.14 2007/06/26 07:19:46 jmc Exp $ .\" $NetBSD: types.5,v 1.4 1997/07/10 06:56:38 mikel Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 @@ -30,7 +30,7 @@ .\" .\" @(#)types.5 8.1 (Berkeley) 6/5/93 .\" -.Dd $Mdocdate: May 31 2007 $ +.Dd $Mdocdate: June 26 2007 $ .Dt TYPES 5 .Os .Sh NAME @@ -70,7 +70,9 @@ typedef int64_t quad_t; typedef quad_t * qaddr_t; typedef char * caddr_t; /* core address */ -typedef int32_t daddr_t; /* disk address */ +typedef int32_t daddr_t; /* 32-bit disk address */ +typedef int32_t daddr32_t; /* 32-bit disk address */ +typedef int64_t daddr64_t; /* 64-bit disk address */ typedef int32_t dev_t; /* device number */ typedef u_int32_t fixpt_t; /* fixed point number */ typedef u_int32_t gid_t; /* group id */ |