summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/remap_file_pages.c
blob: f94067167abce00ca8a8dd861d620f0dc22d2c23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * remap_file_pages() for uClibc
 *
 * Copyright (C) 2008 Will Newton <will.newton@imgtec.com>
 *
 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
 */

#include <sys/syscall.h>

#ifdef __NR_remap_file_pages

_syscall5(int, remap_file_pages, unsigned long, start, unsigned long, size,
	  unsigned long, prot, unsigned long, pgoff, unsigned long, flags);

#endif