summaryrefslogtreecommitdiff
path: root/ghc/includes/ghcSockets.h
diff options
context:
space:
mode:
Diffstat (limited to 'ghc/includes/ghcSockets.h')
-rw-r--r--ghc/includes/ghcSockets.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/ghc/includes/ghcSockets.h b/ghc/includes/ghcSockets.h
new file mode 100644
index 0000000000..5e7351f379
--- /dev/null
+++ b/ghc/includes/ghcSockets.h
@@ -0,0 +1,19 @@
+#ifndef GHC_SOCKETS_H
+#define GHC_SOCKETS_H
+
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <sys/time.h>
+#include <sys/fcntl.h>
+#include <sys/uio.h>
+#include <sys/un.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
+#include <string.h>
+#include <netdb.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <ctype.h>
+#include <unistd.h>
+
+#endif /* !GHC_SOCKETS_H */