From d88b0b78d779a5fbbb6db25e90095e50c5861f54 Mon Sep 17 00:00:00 2001 From: Daniel Cederman Date: Thu, 12 Mar 2015 09:04:20 +0100 Subject: posix: Move function to file with matching name mmap was previously in munmap.c and munmap was in mmap.c. --- cpukit/posix/src/munmap.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'cpukit/posix/src/munmap.c') diff --git a/cpukit/posix/src/munmap.c b/cpukit/posix/src/munmap.c index 3ebb2f4f85..2798326524 100644 --- a/cpukit/posix/src/munmap.c +++ b/cpukit/posix/src/munmap.c @@ -17,14 +17,10 @@ #include -void *mmap( +int munmap( void *addr __attribute__((unused)), - size_t lenhth __attribute__((unused)), - int prot __attribute__((unused)), - int flags __attribute__((unused)), - int fildes __attribute__((unused)), - off_t off + size_t length __attribute__((unused)) ) { - return NULL; + return -1; } -- cgit v1.2.3