summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1999-07-11 19:41:19 +0000
committerRoland McGrath <roland@gnu.org>1999-07-11 19:41:19 +0000
commit453a8ff135e9d8cbbe873b515f7b76b0f83f79e3 (patch)
treed0821cd2937bae06ad404b1eb8530262ea2de514
parent0f466d54ea302459597d7a62905ae74cf975b879 (diff)
1999-07-11 Roland McGrath <roland@baalperazim.frob.com>
* file-get-storage-info.c: Add #include <sys/mman.h>.
-rw-r--r--libnetfs/file-get-storage-info.c7
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;
}
-
-