1
0
mirror of git://sigrok.org/libserialport synced 2023-08-10 21:13:24 +03:00

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.
This commit is contained in:
Uwe Hermann 2013-11-22 22:37:15 +01:00
parent f36c639545
commit 71c8a9b906

View File

@ -50,6 +50,10 @@
#endif #endif
#endif #endif
#ifndef _WIN32
#include "linux_termios.h"
#endif
#include "libserialport.h" #include "libserialport.h"
struct port_data { struct port_data {