From 94eac90d7c1f5c12134fb508565d16bf55dc2cd8 Mon Sep 17 00:00:00 2001 From: William Woodall Date: Tue, 12 Jun 2012 00:23:39 -0500 Subject: [PATCH] Fixing a compile problem in Linux that got introduced in the Windows testing. --- src/serial.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/serial.cc b/src/serial.cc index e188678..cbbc946 100644 --- a/src/serial.cc +++ b/src/serial.cc @@ -1,5 +1,7 @@ /* Copyright 2012 William Woodall and John Harrison */ -//#include +#ifndef _WIN32 +# include +#endif #include "serial/serial.h"