From 872f91c4036e35d292d423e751741ba76f8c5594 Mon Sep 17 00:00:00 2001
From: Rich Salz <rsalz@openssl.org>
Date: Thu, 12 Feb 2015 14:23:28 -0500
Subject: [PATCH] RT3684: rand_egd needs stddef.h

Reviewed-by: Andy Polyakov <appro@openssl.org>
---
 crypto/rand/rand_egd.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/crypto/rand/rand_egd.c b/crypto/rand/rand_egd.c
index 1b6e501b73..737aebfa22 100644
--- a/crypto/rand/rand_egd.c
+++ b/crypto/rand/rand_egd.c
@@ -113,6 +113,7 @@ int RAND_egd_bytes(const char *path, int bytes)
 #else
 # include <openssl/opensslconf.h>
 # include OPENSSL_UNISTD
+# include <stddef.h>
 # include <sys/types.h>
 # include <sys/socket.h>
 # ifndef NO_SYS_UN_H
-- 
2.25.1