panthema / 2006 / SDIOS06 / sdios06 / lib / libc / rand.c (Download File)
// taken from dietlibc

#include <stdlib.h>

static unsigned int seed=1;

int rand(void) {
  return rand_r(&seed);
}

void srand(unsigned int i) { seed=i; }

int random(void) __attribute__((alias("rand")));
void srandom(unsigned int i) __attribute__((alias("srand")));