Initial import from FreeBSD RELENG_4:
[games.git] / contrib / groff / src / libs / libbib / map.c
1 /* Copyright (C) 1989, 1990, 1991, 1992, 2000, 2001
2    Free Software Foundation, Inc.
3      Written by James Clark (jjc@jclark.com)
4
5 This file is part of groff.
6
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.
11
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.
16
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, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20
21 #include <stdlib.h>
22
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
26
27 #ifdef HAVE_MMAP
28
29 #include <sys/types.h>
30 #include <sys/mman.h>
31
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
36
37 char *mapread(fd, nbytes)
38      int fd;
39      int nbytes;
40 {
41   char *p = (char *)mmap((caddr_t)0, (size_t)nbytes, PROT_READ,
42                          MAP_FILE|MAP_PRIVATE, fd, (off_t)0);
43   if (p == (char *)-1)
44     return 0;
45   /* mmap() shouldn't return 0 since MAP_FIXED wasn't specified. */
46   if (p == 0)
47     abort();
48   return p;
49 }
50
51 int unmap(p, len)
52      char *p;
53      int len;
54 {
55   return munmap((caddr_t)p, len);
56 }
57
58 #else /* not HAVE_MMAP */
59
60 #include <errno.h>
61
62 char *mapread(fd, nbytes)
63      int fd;
64      int nbytes;
65 {
66   errno = ENODEV;
67   return 0;
68 }
69
70 int unmap(p, len)
71      char *p;
72      int len;
73 {
74   errno = EINVAL;
75   return -1;
76 }
77
78 #endif /* not HAVE_MMAP */