diff options
author | Roland McGrath <roland@gnu.org> | 1999-07-11 19:41:19 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-07-11 19:41:19 +0000 |
commit | 453a8ff135e9d8cbbe873b515f7b76b0f83f79e3 (patch) | |
tree | d0821cd2937bae06ad404b1eb8530262ea2de514 /libnetfs | |
parent | 0f466d54ea302459597d7a62905ae74cf975b879 (diff) |
1999-07-11 Roland McGrath <roland@baalperazim.frob.com>
* file-get-storage-info.c: Add #include <sys/mman.h>.
Diffstat (limited to 'libnetfs')
-rw-r--r-- | libnetfs/file-get-storage-info.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libnetfs/file-get-storage-info.c b/libnetfs/file-get-storage-info.c index c8fec33c..e9eb32bb 100644 --- a/libnetfs/file-get-storage-info.c +++ b/libnetfs/file-get-storage-info.c @@ -1,4 +1,4 @@ -/* +/* Copyright (C) 1995, 1996, 1999 Free Software Foundation, Inc. Written by Michael I. Bushnell, p/BSG. @@ -20,6 +20,7 @@ #include "netfs.h" #include "fs_S.h" +#include <sys/mman.h> error_t netfs_S_file_get_storage_info (struct protid *user, @@ -33,7 +34,7 @@ netfs_S_file_get_storage_info (struct protid *user, { if (!user) return EOPNOTSUPP; - + *data_len = 0; *num_offsets = 0; *num_ports = 0; @@ -51,5 +52,3 @@ netfs_S_file_get_storage_info (struct protid *user, return 0; } - - |