(root)/
glibc-2.38/
include/
termios.h
       1  #ifndef _TERMIOS_H
       2  #include <termios/termios.h>
       3  
       4  #ifndef _ISOMAC
       5  /* Now define the internal interfaces.  */
       6  extern int __tcgetattr (int __fd, struct termios *__termios_p);
       7  extern int __tcsetattr (int __fd, int __optional_actions,
       8  			const struct termios *__termios_p);
       9  
      10  extern int __libc_tcdrain (int __fd);
      11  
      12  libc_hidden_proto (__tcgetattr)
      13  libc_hidden_proto (tcsetattr)
      14  libc_hidden_proto (cfsetispeed)
      15  libc_hidden_proto (cfsetospeed)
      16  
      17  #endif
      18  #endif