1570af302Sopenharmony_ci#define _GNU_SOURCE
2570af302Sopenharmony_ci#include <sys/mman.h>
3570af302Sopenharmony_ci#include "syscall.h"
4570af302Sopenharmony_ci
5570af302Sopenharmony_ciint remap_file_pages(void *addr, size_t size, int prot, size_t pgoff, int flags)
6570af302Sopenharmony_ci{
7570af302Sopenharmony_ci	return syscall(SYS_remap_file_pages, addr, size, prot, pgoff, flags);
8570af302Sopenharmony_ci}
9