source: rtems/c/src/lib/include/iosupp.h @ 60b791ad

4.104.114.84.95
Last change on this file since 60b791ad was 60b791ad, checked in by Joel Sherrill <joel.sherrill@…>, on 02/17/98 at 23:46:28

updated copyright to 1998

  • Property mode set to 100644
File size: 901 bytes
RevLine 
[ac7d5ef0]1/*  iosupp.h
2 *
[60b791ad]3 *  COPYRIGHT (c) 1989-1998.
[ac7d5ef0]4 *  On-Line Applications Research Corporation (OAR).
[03f2154e]5 *  Copyright assigned to U.S. Government, 1994.
[ac7d5ef0]6 *
[98e4ebf5]7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
[03f2154e]9 *  http://www.OARcorp.com/rtems/license.html.
[ac7d5ef0]10 *
11 *  $Id$
12 */
13
14#ifndef __IOSUPP_h
15#define __IOSUPP_h
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21/* character constants */
22
23#define BS              0x08            /* backspace */
24#define LF              0x0a            /* line feed */
25#define CR              0x0d            /* carriage return */
26#define XON             0x11            /* control-Q */
27#define XOFF            0x13            /* control-S */
28
29/* structures */
30
31#ifdef IOSUPP_INIT
32#define IOSUPP_EXTERN
33#else
34#undef IOSUPP_EXTERN
35#define IOSUPP_EXTERN  extern
36#endif
37
38/* functions */
39
40#ifdef __cplusplus
41}
42#endif
43
44#endif
Note: See TracBrowser for help on using the repository browser.