URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [newlib/] [newlib/] [libc/] [stdlib/] [rand_r.c] - Rev 1765
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdlib.h> int _DEFUN (rand_r, (seed), unsigned int *seed) { return (((*seed) = (*seed) * 1103515245 + 12345) & RAND_MAX); }
Go to most recent revision | Compare with Previous | Blame | View Log