Changes to update Tomato RAF.
[tomato.git] / release / src / router / dnscrypt / src / libnacl / windows / include / windows-quirks.h
blobeb52488a64f895ea8d547850848493325bf9c748
2 #ifdef _WIN32
4 #include <stdlib.h>
6 static void
7 srandom(unsigned seed)
9 srand(seed);
12 static long
13 random(void)
15 return (long) rand();
18 #endif