glibc/include/pty.h
Florian Weimer 734c60ebb6 login: Move libutil into libc
The symbols forkpty, login, login_tty, logout, logwtmp, openpty
were moved using scripts/move-symbol-to-libc.py.

This is a single commit because most of the symbols are tied together
via forkpty, for example.

Several changes to use hidden prototypes are needed.  This commit
also updates pseudoterminal terminology on modified lines.

For 390 (31-bit), this commit follows the existing style for the
compat symbol version creation.

Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
2021-06-30 08:43:37 +02:00

11 lines
144 B
C

#ifndef _PTY_H
#include <login/pty.h>
# ifndef _ISOMAC
libc_hidden_proto (forkpty)
libc_hidden_proto (openpty)
# endif /* !_ISOMAC */
#endif