* All affected files: Update postal address of FSF.
[s-roff.git] / src / libs / libbib / map.c
blobf45625d94b5a84559febd85fb627c5da4e7514a4
1 /* Copyright (C) 1989, 1990, 1991, 1992, 2000, 2001, 2004
2 Free Software Foundation, Inc.
3 Written by James Clark (jjc@jclark.com)
5 This file is part of groff.
7 groff is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 groff is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License along
18 with groff; see the file COPYING. If not, write to the Free Software
19 Foundation, 51 Franklin St - Fifth Floor, Boston, MA 02110-1301, USA. */
21 #include <stdlib.h>
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
27 #ifdef HAVE_MMAP
29 #include <sys/types.h>
30 #include <sys/mman.h>
32 /* The Net-2 man pages says that a MAP_FILE flag is required. */
33 #ifndef MAP_FILE
34 #define MAP_FILE 0
35 #endif
37 #ifdef __cplusplus
38 extern "C" {
39 #endif
41 char *mapread(int fd, int nbytes)
43 char *p = (char *)mmap((void *)0, (size_t)nbytes, PROT_READ,
44 MAP_FILE|MAP_PRIVATE, fd, (off_t)0);
45 if (p == (char *)-1)
46 return 0;
47 /* mmap() shouldn't return 0 since MAP_FIXED wasn't specified. */
48 if (p == 0)
49 abort();
50 return p;
53 int unmap(char *p, int len)
55 return munmap((void *)p, len);
58 #ifdef __cplusplus
60 #endif
62 #else /* not HAVE_MMAP */
64 #include <errno.h>
66 #ifdef __cplusplus
67 extern "C" {
68 #endif
70 char *mapread(int fd, int nbytes)
72 errno = ENODEV;
73 return 0;
76 int unmap(char *p, int len)
78 errno = EINVAL;
79 return -1;
82 #ifdef __cplusplus
84 #endif
86 #endif /* not HAVE_MMAP */