You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
157 B

  1. #include <stdlib.h>
  2. #ifdef _WIN32
  3. static void
  4. srandom(unsigned seed)
  5. {
  6. srand(seed);
  7. }
  8. static long
  9. random(void)
  10. {
  11. return (long) rand();
  12. }
  13. #endif