diff options
Diffstat (limited to 'libc/sysdeps/linux/common/mincore.c')
| -rw-r--r-- | libc/sysdeps/linux/common/mincore.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/libc/sysdeps/linux/common/mincore.c b/libc/sysdeps/linux/common/mincore.c index ecae441a5..0e3ade1ce 100644 --- a/libc/sysdeps/linux/common/mincore.c +++ b/libc/sysdeps/linux/common/mincore.c @@ -1,14 +1,14 @@ -/*  - * Distributed under the terms of the GNU General Public License v2 - * $Header: /var/cvs/uClibc/libc/sysdeps/linux/common/mincore.c,v 1.1 2004/12/20 00:10:51 solar Exp $ - * +/*   * This file provides the mincore() system call to uClibc. - * 20041215 - <solar@gentoo.org> + * Copyright (C) 20041215 - <solar@gentoo.org> + * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>   * + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.   */  #include "syscalls.h"  #include <unistd.h> +#include <sys/mman.h>  #ifdef __NR_mincore  _syscall3(int, mincore, void *, start, size_t, length, unsigned char *, vec);  | 
