diff options
author | Roland McGrath <roland@gnu.org> | 1999-07-11 01:45:23 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-07-11 01:45:23 +0000 |
commit | 033579a8f63ddc935e8fd3b96a5e4ead57e5f54b (patch) | |
tree | e61641a715273eaa1ece3997097c5d5ebea7df29 /isofs | |
parent | f4d9ddb47b566a8930a5e7124a719f006c2da357 (diff) |
1999-07-10 Roland McGrath <roland@baalperazim.frob.com>
* isofs.h: Add #include <sys/mman.h> for munmap decl.
Diffstat (limited to 'isofs')
-rw-r--r-- | isofs/isofs.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/isofs/isofs.h b/isofs/isofs.h index 9bec3c92..23ec9d5f 100644 --- a/isofs/isofs.h +++ b/isofs/isofs.h @@ -1,5 +1,5 @@ -/* - Copyright (C) 1997 Free Software Foundation, Inc. +/* + Copyright (C) 1997, 1999 Free Software Foundation, Inc. Written by Thomas Bushnell, n/BSG. This file is part of the GNU Hurd. @@ -20,6 +20,7 @@ #include <sys/types.h> +#include <sys/mman.h> #include <hurd/diskfs.h> #include <hurd/diskfs-pager.h> #include <hurd/store.h> @@ -70,7 +71,7 @@ void *disk_image; size_t logical_block_size; /* Size of "logical sectors" (6.1.2). These are 2048 or the - largest power of two that will fit in a physical sector, whichever is + largest power of two that will fit in a physical sector, whichever is greater. I don't know how to fetch the physical sector size; so we'll just use a constant. */ #define logical_sector_size 2048 |