getopt.h is a GNU-getopt-specific header. always expose GNU functions.
[musl] / src / prng / srandom.c
1 #include <stdlib.h>
2
3 /* FIXME */
4
5 void srandom(unsigned seed)
6 {
7         return srand(seed);
8 }