Added prototype for srandom(). Function is already defined in random.c (together with the other random functions like initstate, setstate, random) but not exposed in the header file

This commit is contained in:
Fabrizio Bertocci 2021-03-21 08:43:12 -04:00
parent 5af25f687a
commit 0d2aa4fba4

View file

@ -28,6 +28,7 @@ float randf(void);
char *initstate(unsigned, char *, size_t);
char *setstate(char *);
long random(void);
void srandom(unsigned);
COSMOPOLITAN_C_END_
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */