aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernd Kuhls <[email protected]>2020-01-31 18:48:06 +0100
committerMarge Bot <[email protected]>2020-02-03 10:55:44 +0000
commite62c3cf350a8b169e6401d5f1e1f17388cdc4b77 (patch)
tree8c9180d503393ee3ea535e789c6e34f9d2427618
parentf38851d84c583b1c62ea95edbc42eb5e2ad14fa8 (diff)
util/os_socket: Include unistd.h to fix build error
Fixes In file included from ../src/util/os_socket.c:8: ../src/util/os_socket.h:26:1: error: unknown type name ‘ssize_t’; did you mean ‘size_t’? ssize_t os_socket_recv(int socket, void *buffer, size_t length, int flags); seen with gcc version 8.3.0 (Buildroot 2019.11) and uClibc 1.0.32. Reviewed-by: Eric Engestrom <[email protected]> Fixes: ef5266ebd50e7fa65c56 ("util/os_socket: Add socket related functions.") Tested-by: Marge Bot <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3659> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3659>
-rw-r--r--src/util/os_socket.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/util/os_socket.h b/src/util/os_socket.h
index 0d6f8749176..db0dc905a2b 100644
--- a/src/util/os_socket.h
+++ b/src/util/os_socket.h
@@ -10,6 +10,7 @@
#include <stdio.h>
#include <stdbool.h>
+#include <unistd.h>
#ifdef _MSC_VER
#include <BaseTsd.h>
typedef SSIZE_T ssize_t;