mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-06 05:10:05 +00:00
c559a3ca84
1999-11-25 H.J. Lu <hjl@gnu.org> * stdlib/exit.c (exit): Run funtions only if __exit_funcs->idx > 0. 1999-11-25 Ulrich Drepper <drepper@cygnus.com> * manual/charset.texi (iconv Examples): Add iconv call to flush state. Reported by Andrew Clausen <clausen@alphalink.com.au>. 1999-11-25 Andreas Jaeger <aj@suse.de> * manual/install.texi (Running make install): Better describe update from libc5. Patch by Michael Deutschmann <michael@talamasca.wkpowerlink.com>. 1999-11-25 Andreas Jaeger <aj@suse.de> * include/sys/mman.h: Remove K&R compatibility. 1999-11-15 Andreas Jaeger <aj@suse.de> * misc/sys/mman.h: Use __REDIRECT for mmap, correct prototype to use __off64_t. 1999-11-25 Ulrich Drepper <drepper@cygnus.com> * iconv/iconv_prog.c (process_block): For stateful charsets write out byte sequence to get to initial state at the end of the file. which was reported to not work (which proofed to be wrong).
16 lines
573 B
C
16 lines
573 B
C
#ifndef _SYS_MMAN_H
|
|
#include <misc/sys/mman.h>
|
|
|
|
/* Now define the internal interfaces. */
|
|
extern void *__mmap (void *__addr, size_t __len, int __prot,
|
|
int __flags, int __fd, __off_t __offset);
|
|
extern void *__mmap64 (void *__addr, size_t __len, int __prot,
|
|
int __flags, int __fd, __off64_t __offset);
|
|
extern int __munmap (void *__addr, size_t __len);
|
|
extern int __mprotect (void *__addr, size_t __len, int __prot);
|
|
|
|
/* This one is Linux specific. */
|
|
extern void *__mremap (void *__addr, size_t __old_len,
|
|
size_t __new_len, int __may_move);
|
|
#endif
|