AcpiExec/Unix-OSL: Use <termios.h> instead of <termio.h> for portability.

The file termios.h is the correct POSIX header.
This commit is contained in:
Robert Moore 2013-10-22 09:09:20 -07:00
parent 04ab584f78
commit 9aa255d4af

View File

@ -163,7 +163,7 @@ typedef void* (*PTHREAD_CALLBACK) (void *);
/* Terminal support for AcpiExec only */
#ifdef ACPI_EXEC_APP
#include <termio.h>
#include <termios.h>
struct termios OriginalTermAttributes;