aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-06-13 06:48:04 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-06-13 06:48:04 +0000
commite727fb82f2cfb7fe01a2d03c7d39af60b23f842f (patch)
treec2c9dfe4e877b5f95a7bbb0089a86c6436e5ef40 /lib
parentc78df568013bd949cdfe695da2581b420f10d81b (diff)
Marty Kuhrt's #include fixes for VMS
Diffstat (limited to 'lib')
-rw-r--r--lib/multi.c3
-rw-r--r--lib/share.c1
2 files changed, 4 insertions, 0 deletions
diff --git a/lib/multi.c b/lib/multi.c
index 78763b27f..3dfccd028 100644
--- a/lib/multi.c
+++ b/lib/multi.c
@@ -31,6 +31,9 @@
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif
#include <curl/curl.h>
diff --git a/lib/share.c b/lib/share.c
index cd555a88f..df4d5ec14 100644
--- a/lib/share.c
+++ b/lib/share.c
@@ -24,6 +24,7 @@
#include "setup.h"
#include <stdarg.h>
#include <stdlib.h>
+#include <string.h>
#include <curl/curl.h>
#include "urldata.h"
#include "share.h"