cleanup types stuff in headers, fix missing u_int*_t in sys/types.h
[musl] / src / prng / random.c
1 #include <stdlib.h>
2
3 /* FIXME */
4
5 long random()
6 {
7         return rand();
8 }