diff options
author | Vincent Richard <[email protected]> | 2004-12-23 10:51:44 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2004-12-23 10:51:44 +0000 |
commit | 92ba7485568e699ef1eb1233cee83127855a6497 (patch) | |
tree | bab0268cbeb4cba7c225a998d536ca680d1ca183 | |
parent | Fixed missing 'unit++' in tests/lib. (diff) | |
download | vmime-92ba7485568e699ef1eb1233cee83127855a6497.tar.gz vmime-92ba7485568e699ef1eb1233cee83127855a6497.zip |
Missing #include for close() function.
-rw-r--r-- | src/platforms/posix/socket.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/platforms/posix/socket.cpp b/src/platforms/posix/socket.cpp index 8d4f8fbc..51cc5cc1 100644 --- a/src/platforms/posix/socket.cpp +++ b/src/platforms/posix/socket.cpp @@ -19,6 +19,7 @@ #include "socket.hpp" +#include <unistd.h> #include <sys/socket.h> #include <arpa/inet.h> #include <sys/types.h> |