]> git.saurik.com Git - apple/libc.git/blame_incremental - gen/FreeBSD/nrand48.c.patch
Libc-583.tar.gz
[apple/libc.git] / gen / FreeBSD / nrand48.c.patch
... / ...
CommitLineData
1--- nrand48.c.orig 2003-05-20 15:21:02.000000000 -0700
2+++ nrand48.c 2005-11-03 13:43:51.000000000 -0800
3@@ -19,6 +19,7 @@
4 long
5 nrand48(unsigned short xseed[3])
6 {
7- _dorand48(xseed);
8- return ((long) xseed[2] << 15) + ((long) xseed[1] >> 1);
9+ uint48 tmp;
10+ DORAND48(tmp, xseed);
11+ return (tmp >> 17) & 0x7fffffff;
12 }