Commit a19228b7 authored by Richard Levitte's avatar Richard Levitte
Browse files

apps/apps.c: include sys/socket.h to declare recv()



Reviewed-by: default avatarTim Hudson <tjh@openssl.org>
parent 6e836806
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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);