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

4.104.114.84.95
Last change on this file since e414566 was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

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