diff options
author | Roland McGrath <roland@gnu.org> | 1999-07-11 01:42:07 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-07-11 01:42:07 +0000 |
commit | c8ef260269a1508b97823fad88a5a9a2aa30b816 (patch) | |
tree | 8c291fb6a14c98c40da571f05641a3e55857c913 /libstore | |
parent | fd06a82ab14e625a9a769a2481a21d2dbc79b133 (diff) |
1999-07-10 Roland McGrath <roland@baalperazim.frob.com>
* rdwr.c: Add #include <sys/mman.h> for munmap decl.
* enc.c: Likewise.
* copy.c: Likewise.
* gunzip.c: Likewise.
* bunzip2.c: Likewise.
Diffstat (limited to 'libstore')
-rw-r--r-- | libstore/bunzip2.c | 1 | ||||
-rw-r--r-- | libstore/copy.c | 1 | ||||
-rw-r--r-- | libstore/enc.c | 1 | ||||
-rw-r--r-- | libstore/gunzip.c | 1 | ||||
-rw-r--r-- | libstore/rdwr.c | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/libstore/bunzip2.c b/libstore/bunzip2.c index 71a69db6..3b7ecb0e 100644 --- a/libstore/bunzip2.c +++ b/libstore/bunzip2.c @@ -22,6 +22,7 @@ #include <string.h> #include <setjmp.h> #include <cthreads.h> +#include <sys/mman.h> #include "store.h" diff --git a/libstore/copy.c b/libstore/copy.c index 7856c634..ded612fe 100644 --- a/libstore/copy.c +++ b/libstore/copy.c @@ -23,6 +23,7 @@ #include <stdio.h> #include <string.h> #include <malloc.h> +#include <sys/mman.h> #include "store.h" diff --git a/libstore/enc.c b/libstore/enc.c index 8ab76f4f..65104cf0 100644 --- a/libstore/enc.c +++ b/libstore/enc.c @@ -19,6 +19,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. */ #include <string.h> +#include <sys/mman.h> #include "store.h" diff --git a/libstore/gunzip.c b/libstore/gunzip.c index 261baee3..eb2355e8 100644 --- a/libstore/gunzip.c +++ b/libstore/gunzip.c @@ -22,6 +22,7 @@ #include <string.h> #include <setjmp.h> #include <cthreads.h> +#include <sys/mman.h> #include "store.h" diff --git a/libstore/rdwr.c b/libstore/rdwr.c index 27c2916d..42006ad5 100644 --- a/libstore/rdwr.c +++ b/libstore/rdwr.c @@ -19,6 +19,7 @@ 59 Temple Place - Suite 330, Boston, MA 02111, USA. */ #include <string.h> +#include <sys/mman.h> #include "store.h" |