diff options
author | Roland McGrath <roland@gnu.org> | 1996-02-13 09:26:53 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-02-13 09:26:53 +0000 |
commit | 01f3e03bcd992cc2917f5d228e763ef3d65e67ad (patch) | |
tree | 1ad618150324c534039e6810990fd57a1990243c /sysdeps/unix/sysv/linux/sys | |
parent | 38334018ff9ea088c24afd6c2a5b3baa12b6110e (diff) | |
download | glibc-01f3e03bcd992cc2917f5d228e763ef3d65e67ad.tar.gz glibc-01f3e03bcd992cc2917f5d228e763ef3d65e67ad.tar.xz glibc-01f3e03bcd992cc2917f5d228e763ef3d65e67ad.zip |
Sat Feb 10 13:09:03 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/unix/sysv/linux/sys/mman.h: Define MAP_ANON and MAP_FILE if not already defined. * elf/elf.h: Add m68k reloc definitions. * sysdeps/m68k/dl-machine.h, sysdeps/m68k/elf/start.S: New files. Sat Feb 10 13:09:03 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * sysdeps/unix/sysv/linux/sys/mman.h: Define MAP_ANON and MAP_FILE if not already defined. * elf/elf.h: Add m68k reloc definitions. * sysdeps/m68k/dl-machine.h, sysdeps/m68k/elf/start.S: New files.
Diffstat (limited to 'sysdeps/unix/sysv/linux/sys')
-rw-r--r-- | sysdeps/unix/sysv/linux/sys/mman.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/sys/mman.h b/sysdeps/unix/sysv/linux/sys/mman.h index ac5940b663..007dbfd6d6 100644 --- a/sysdeps/unix/sysv/linux/sys/mman.h +++ b/sysdeps/unix/sysv/linux/sys/mman.h @@ -31,6 +31,13 @@ Cambridge, MA 02139, USA. */ /* Get the bit values from the kernel header file. */ #include <linux/mman.h> +#ifndef MAP_ANON +#define MAP_ANON MAP_ANONYMOUS +#endif +#ifndef MAP_FILE +#define MAP_FILE 0 +#endif + __BEGIN_DECLS /* Map addresses starting near ADDR and extending for LEN bytes. from OFFSET into the file FD describes according to PROT and FLAGS. If ADDR |