Files
cdba/tty.h
Dmitry Baryshkov 2f1caa28c0 tty: split tty_open to a separate file
Split the function tty_open() to a separate file.

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
2024-03-30 18:06:19 +02:00

8 lines
113 B
C

#ifndef __TTY_H__
#define __TTY_H__
struct termios;
int tty_open(const char *tty, struct termios *old);
#endif