Add support for using time64 on big-endian machines.
[uclibc-ng.git] / libc / sysdeps / linux / common / munlockall.c
blobd8891d8063befbc34508cf0b5f846af02590fe55
1 /*
2 * munlockall() for uClibc
4 * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
6 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
7 */
9 #include <sys/syscall.h>
11 #if defined __NR_munlockall && defined __ARCH_USE_MMU__
12 #include <sys/mman.h>
14 _syscall0(int, munlockall)
15 #endif