mincore.c 425 B

123456789101112131415
  1. /*
  2. * Distributed under the terms of the GNU General Public License v2
  3. * $Header: /var/cvs/uClibc/libc/sysdeps/linux/common/mincore.c,v 1.1 2004/12/20 00:10:51 solar Exp $
  4. *
  5. * This file provides the mincore() system call to uClibc.
  6. * 20041215 - <solar@gentoo.org>
  7. *
  8. */
  9. #include "syscalls.h"
  10. #include <unistd.h>
  11. #ifdef __NR_mincore
  12. _syscall3(int, mincore, void *, start, size_t, length, unsigned char *, vec);
  13. #endif