mmap.c 487 B

12345678910111213141516171819
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * mmap() for uClibc/x86_64
  4. *
  5. * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  6. * Copyright (C) 2005 by Mike Frysinger <vapier@gentoo.org>
  7. *
  8. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  9. */
  10. #include <errno.h>
  11. #include <unistd.h>
  12. #include <sys/mman.h>
  13. #include <sys/syscall.h>
  14. _syscall6(void *, mmap, void *, start, size_t, length, int, prot,
  15. int, flags, int, fd, off_t, offset)
  16. libc_hidden_def(mmap)