source: rtems/cpukit/posix/src/munmap.c @ 04da96c7

5
Last change on this file since 04da96c7 was f97536d, checked in by Sebastian Huber <sebastian.huber@…>, on 10/16/15 at 06:21:48

basdefs.h: Add and use RTEMS_UNUSED

  • Property mode set to 100644
File size: 430 bytes
Line 
1/**
2 * @file
3 */
4
5/*
6 *  COPYRIGHT (c) 2014.
7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.rtems.org/license/LICENSE.
12 */
13
14#if HAVE_CONFIG_H
15#include "config.h"
16#endif
17
18#include <sys/mman.h>
19
20int munmap(
21  void   *addr,
22  size_t  length
23)
24{
25  (void) addr;
26  (void) length;
27  return -1;
28}
Note: See TracBrowser for help on using the repository browser.