diff options
author | Roland McGrath <roland@gnu.org> | 1999-07-11 01:56:03 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-07-11 01:56:03 +0000 |
commit | 49f1feceed0ae6c92746d42e8563663f67fc546c (patch) | |
tree | 43fb17576f3ba52ec60ae6a3ccb64a9d8063c5c0 /libnetfs/io-read.c | |
parent | feb697a34fbf95cd3f57ac4b2e95daf5d8b1ba21 (diff) | |
download | hurd-49f1feceed0ae6c92746d42e8563663f67fc546c.tar.gz hurd-49f1feceed0ae6c92746d42e8563663f67fc546c.tar.bz2 hurd-49f1feceed0ae6c92746d42e8563663f67fc546c.zip |
1999-07-10 Roland McGrath <roland@baalperazim.frob.com>
* io-read.c: Add #include <sys/mman.h> for munmap decl.
* release-protid.c: Likewise.
Diffstat (limited to 'libnetfs/io-read.c')
-rw-r--r-- | libnetfs/io-read.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libnetfs/io-read.c b/libnetfs/io-read.c index 00452d30..4c97c297 100644 --- a/libnetfs/io-read.c +++ b/libnetfs/io-read.c @@ -1,4 +1,4 @@ -/* +/* Copyright (C) 1995, 1996, 1997, 1999 Free Software Foundation, Inc. Written by Michael I. Bushnell, p/BSG. @@ -21,6 +21,7 @@ #include "netfs.h" #include "io_S.h" #include <fcntl.h> +#include <sys/mman.h> error_t netfs_S_io_read (struct protid *user, @@ -101,4 +102,3 @@ netfs_S_io_read (struct protid *user, return err; } - |