diff options
author | Stefan Radomski <radomski@tk.informatik.tu-darmstadt.de> | 2014-07-17 06:43:06 (GMT) |
---|---|---|
committer | Stefan Radomski <radomski@tk.informatik.tu-darmstadt.de> | 2014-07-17 06:43:06 (GMT) |
commit | fcefbaafa8b55f5b5ae24d4be450ae4bcdfb7c80 (patch) | |
tree | ec129c1a3c86ab8d44dc61d642b28ca9a369112d | |
parent | d368108255c3bfe8bdd0d96414b293a5a767f82a (diff) | |
download | uscxml-fcefbaafa8b55f5b5ae24d4be450ae4bcdfb7c80.zip uscxml-fcefbaafa8b55f5b5ae24d4be450ae4bcdfb7c80.tar.gz uscxml-fcefbaafa8b55f5b5ae24d4be450ae4bcdfb7c80.tar.bz2 |
bug fix for errno
-rw-r--r-- | src/uscxml/server/Socket.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/uscxml/server/Socket.h b/src/uscxml/server/Socket.h index fcaada4..5854a46 100644 --- a/src/uscxml/server/Socket.h +++ b/src/uscxml/server/Socket.h @@ -31,6 +31,7 @@ #else # include <netinet/in.h> /* For sockaddr_in */ #endif +#include <cerrno> #include "uscxml/concurrency/tinythread.h" // for recursive_mutex, etc |