From ee7cd3e6b622a8c40236ac26270e369bc28af007 Mon Sep 17 00:00:00 2001 From: pk33 Date: Sun, 3 Nov 2024 01:39:28 +0100 Subject: modesetting tweaks --- musl/pty.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 musl/pty.h (limited to 'musl/pty.h') diff --git a/musl/pty.h b/musl/pty.h new file mode 100644 index 0000000..db63853 --- /dev/null +++ b/musl/pty.h @@ -0,0 +1,18 @@ +#ifndef _PTY_H +#define _PTY_H + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include + +int openpty(int *, int *, char *, const struct termios *, const struct winsize *); +int forkpty(int *, char *, const struct termios *, const struct winsize *); + +#ifdef __cplusplus +} +#endif + +#endif -- cgit v1.2.3