Remove rand_r implementation

We already use our own mt13397 implementation nowadays, so we no
longer need this shim.
This commit is contained in:
Nikita Popov 2020-03-26 11:49:27 +01:00
parent 97cb81ead5
commit e8e09b60b4
3 changed files with 0 additions and 64 deletions

View file

@ -99,12 +99,6 @@ char *strtok_r(char *s, const char *delim, char **last);
#endif
#endif
#if !defined(HAVE_RAND_R)
PHPAPI int php_rand_r(unsigned int *seed);
#else
#define php_rand_r rand_r
#endif
END_EXTERN_C()
#if !defined(ZTS)