source: rtems/cpukit/libcsupport/src/tcflow.c @ 2e8737a

4.104.115
Last change on this file since 2e8737a was 2e8737a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 09/15/09 at 09:42:46

Add attribute((unused)) to function arguments.

  • Property mode set to 100644
File size: 670 bytes
Line 
1/*
2 *  tcflow() - POSIX 1003.1b 7.2.2 - Line Control Functions
3 *
4 *  COPYRIGHT (c) 1989-1999.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.com/license/LICENSE.
10 *
11 *  $Id$
12 */
13
14#if HAVE_CONFIG_H
15#include "config.h"
16#endif
17
18#include <rtems.h>
19#if defined(RTEMS_NEWLIB)
20
21#include <sys/types.h>
22#include <sys/stat.h>
23#include <errno.h>
24#include <termios.h>
25/* #include <sys/ioctl.h> */
26
27#include <rtems/libio.h>
28
29int tcflow (
30  int fd __attribute__((unused)),
31  int action __attribute__((unused)))
32{
33  return 0;
34}
35
36#endif
Note: See TracBrowser for help on using the repository browser.