/usr/include/calc/terminal.h is in apcalc-dev 2.12.5.0-1+b3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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)
/* use termios */
#define USE_TERMIOS /* <termios.h> */
#undef USE_TERMIO /* <termio.h> */
#undef USE_SGTTY /* <sys/ioctl.h> */
#endif
#endif
#endif
#endif /* !__TERMINAL_H__ */
|