Skip to content

Commit 37dbc46

Browse files
committed
EmulatorPkg: Do not require deprecated termio.h
The termio.h of glibc has been deprecated for decades and was finally removed in glibc 2.42. EmulatorPkg still pulls it in for no reason (the "new" termios.h is being included already). Remove the include of termio.h. Signed-off-by: Oliver Steffen <[email protected]> diff --git a/EmulatorPkg/Unix/Host/Host.h b/EmulatorPkg/Unix/Host/Host.h index b62496b..f46445a 100644 --- a/EmulatorPkg/Unix/Host/Host.h +++ b/EmulatorPkg/Unix/Host/Host.h @@ -66,7 +66,6 @@ SPDX-License-Identifier: BSD-2-Clause-Patent #define _Bool char // for clang debug #endif #else - #include <termio.h> #include <sys/vfs.h> #include <linux/fs.h> #endif
1 parent 3291946 commit 37dbc46

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

EmulatorPkg/Unix/Host/Host.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ SPDX-License-Identifier: BSD-2-Clause-Patent
6666
#define _Bool char // for clang debug
6767
#endif
6868
#else
69-
#include <termio.h>
7069
#include <sys/vfs.h>
7170
#include <linux/fs.h>
7271
#endif

0 commit comments

Comments
 (0)