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 6c97f3d commit b1aa197Copy full SHA for b1aa197
1 file changed
src/proxy_lib/proxy_lib.c
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright (C) 2024-2025 Intel Corporation
+ * Copyright (C) 2024-2026 Intel Corporation
3
*
4
* Under the Apache License v2.0 with LLVM Exceptions. See LICENSE.TXT.
5
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
@@ -28,9 +28,13 @@
28
*/
29
30
#ifndef _WIN32
31
+#ifndef _GNU_SOURCE
32
#define _GNU_SOURCE // for RTLD_NEXT
33
#include <dlfcn.h>
34
#undef _GNU_SOURCE
35
+#else /* _GNU_SOURCE */
36
+#include <dlfcn.h>
37
+#endif /* _GNU_SOURCE */
38
#endif /* _WIN32 */
39
40
#if (defined PROXY_LIB_USES_JEMALLOC_POOL)
0 commit comments