File: terminal.h

package info (click to toggle)
apcalc 2.12.1.5-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 5,548 kB
  • ctags: 4,129
  • sloc: ansic: 53,374; makefile: 5,589; awk: 96; sed: 33; sh: 13
file content (23 lines) | stat: -rw-r--r-- 437 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * DO NOT EDIT -- generated by the Makefile
 */


#if !defined(__TERMINAL_H__)
#define __TERMINAL_H__


/* determine the type of terminal interface */
#if !defined(USE_TERMIOS)
#if !defined(USE_TERMIO)
#if !defined(USE_SGTTY)
/* windoz, use none of these modes */
#undef USE_TERMIOS   /* <termios.h> */
#undef USE_TERMIO    /* <termio.h> */
#undef USE_SGTTY     /* <sys/ioctl.h> */
#endif
#endif
#endif


#endif /* !__TERMINAL_H__ */