From 71c8a9b906198155c2f494c4eef33b36577a1c2f Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Fri, 22 Nov 2013 22:37:15 +0100 Subject: [PATCH] serialport.c: Add missing linux_termios.h #include. This is safe to include (at the moment) on all non-win32 OSes, since it doesn't contain anything OS-specific. --- serialport.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/serialport.c b/serialport.c index 007de43..fb2e973 100644 --- a/serialport.c +++ b/serialport.c @@ -50,6 +50,10 @@ #endif #endif +#ifndef _WIN32 +#include "linux_termios.h" +#endif + #include "libserialport.h" struct port_data {