Complete the VxWorks fix by implementing a NULL RAND_poll() for it.

PR: 253
This commit is contained in:
Richard Levitte
2002-10-14 09:44:57 +00:00
parent 4b14ed760d
commit 57d8ff79b2
2 changed files with 8 additions and 1 deletions

View File

@@ -236,3 +236,10 @@ int RAND_poll(void)
}
#endif
#if defined(OPENSSL_SYS_VXWORKS)
int RAND_poll(void)
{
return 0;
}
#endif