Don't export arc4random to fix the following libcurl build failure
raised since bump of libcurl to version 8.5.0 in commit
aaa9438b96 and
7925ba431b:
rand.c: In function 'randit':
rand.c:146:26: error: implicit declaration of function 'arc4random'; did you mean 'srandom'? [-Werror=implicit-function-declaration]
146 | *rnd = (unsigned int)arc4random();
| ^~~~~~~~~~
| srandom
cc1: some warnings being treated as errors
Fixes:
- http://autobuild.buildroot.org/results/8b7988629f1887be15c97b8c511d25443ba110d8
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle <arnout@mind.be>