From fc5b21e5c3f0f1f9edbd63ad304ae13e74eb0259 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Sat, 7 Oct 2006 22:22:51 +0000 Subject: Add the mmap.c missed out in the last commit. --- libc/sysdeps/linux/arm/mmap.c | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 libc/sysdeps/linux/arm/mmap.c (limited to 'libc') diff --git a/libc/sysdeps/linux/arm/mmap.c b/libc/sysdeps/linux/arm/mmap.c new file mode 100644 index 000000000..4d01caadb --- /dev/null +++ b/libc/sysdeps/linux/arm/mmap.c @@ -0,0 +1,30 @@ +/* vi: set sw=4 ts=4: */ +/* + * _mmap() for uClibc + * + * Copyright (C) 2000-2004 by Erik Andersen + * + * GNU Library General Public License (LGPL) version 2 or later. + */ +#include +#include +#include +#include + +libc_hidden_proto (mmap) + +#if defined __ARM_EABI__ +#define __NR__mmap __NR_mmap2 +#else +#define __NR__mmap __NR_mmap +#endif +static inline _syscall6 (__ptr_t, _mmap, __ptr_t, addr, size_t, len, + int, prot, int, flags, int, fd, __off_t, offset); + +__ptr_t mmap(__ptr_t addr, size_t len, int prot, + int flags, int fd, __off_t offset) +{ + return (__ptr_t) _mmap (addr, len, prot, flags, fd, offset); +} + +libc_hidden_def (mmap) -- cgit v1.2.3