source:
inundation/pymetis/win32/random.c
@
3381
Last change on this file since 3381 was 2098, checked in by , 19 years ago | |
---|---|
File size: 122 bytes |
Rev | Line | |
---|---|---|
[2098] | 1 | #include <stdlib.h> |
2 | ||
3 | double drand48(){ | |
4 | return (((double)rand())/RAND_MAX); | |
5 | } | |
6 | ||
7 | void srand48(long seed){ | |
8 | srand(seed); | |
9 | } |
Note: See TracBrowser
for help on using the repository browser.