mirror of
https://github.com/lcn2/calc.git
synced 2025-08-19 01:13:27 +03:00
24 lines
437 B
C
24 lines
437 B
C
/*
|
|
* 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__ */
|