projects
/
openssl.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
apps/apps.c: include sys/socket.h to declare recv()
[openssl.git]
/
apps
/
apps.c
diff --git
a/apps/apps.c
b/apps/apps.c
index 6ca0f2b1bc5538f6f083ac3067f85a2a9854fc2d..aa564b8e8f8a753298f32b4653790ba19f2047b1 100644
(file)
--- a/
apps/apps.c
+++ b/
apps/apps.c
@@
-2340,6
+2340,8
@@
int raw_read_stdin(void *buf, int siz)
return (-1);
}
#elif defined(__VMS)
+#include <sys/socket.h>
+
int raw_read_stdin(void *buf, int siz)
{
return recv(fileno_stdin(), buf, siz, 0);