mirror of https://github.com/nodejs/node.git
16 lines
479 B
Diff
16 lines
479 B
Diff
diff --git a/openssl/crypto/ui/ui_openssl.c b/openssl/crypto/ui/ui_openssl.c
|
|
index 06270f0..e2fff79 100644
|
|
--- a/openssl/crypto/ui/ui_openssl.c
|
|
+++ b/openssl/crypto/ui/ui_openssl.c
|
|
@@ -122,7 +122,10 @@
|
|
* sigaction and fileno included. -pedantic would be more appropriate for
|
|
* the intended purposes, but we can't prevent users from adding -ansi.
|
|
*/
|
|
+#ifndef _POSIX_C_SOURCE
|
|
#define _POSIX_C_SOURCE 1
|
|
+#endif
|
|
+
|
|
#include <signal.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|