Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4024680 commit f6ab319Copy full SHA for f6ab319
src/gp_util.c
@@ -63,7 +63,7 @@ char *gp_strerror(int errnum)
63
static __thread char buf[MAX_GP_STRERROR];
64
int saved_errno = errno;
65
66
-#if ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && !_GNU_SOURCE)
+#if ((_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && !_GNU_SOURCE) || !defined(__GLIBC__)
67
/* XSI version */
68
int ret;
69
tests/userproxytest.c
@@ -5,6 +5,7 @@
5
#include <stdbool.h>
6
#include <stdio.h>
7
#include <stdlib.h>
8
+#include <string.h>
9
#include <sys/socket.h>
10
#include <sys/un.h>
11
#include <sys/wait.h>
0 commit comments