source: rtems/cpukit/posix/src/aio_return.c @ 92f4671

4.104.115
Last change on this file since 92f4671 was 92f4671, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/02/09 at 10:04:24

Add attribute((unused)) to unused function args.

  • Property mode set to 100644
File size: 625 bytes
Line 
1/*
2 *  6.7.6 Retrieve Return Status of Asynchronous I/O Operation,
3 *        P1003.1b-1993, p. 162
4 *
5 *  COPYRIGHT (c) 1989-2007.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.rtems.com/license/LICENSE.
11 *
12 *  $Id$
13 */
14
15#if HAVE_CONFIG_H
16#include "config.h"
17#endif
18
19#include <aio.h>
20#include <errno.h>
21
22#include <rtems/system.h>
23#include <rtems/seterr.h>
24
25int aio_return(
26  const struct aiocb  *aiocbp __attribute__((unused))
27)
28{
29  rtems_set_errno_and_return_minus_one( ENOSYS );
30}
Note: See TracBrowser for help on using the repository browser.