1*86d7f5d3SJohn Marino /* 2*86d7f5d3SJohn Marino * Copyright (c) 1993 Martin Birgmeier 3*86d7f5d3SJohn Marino * All rights reserved. 4*86d7f5d3SJohn Marino * 5*86d7f5d3SJohn Marino * You may redistribute unmodified or modified versions of this source 6*86d7f5d3SJohn Marino * code provided that the above copyright notice and this and the 7*86d7f5d3SJohn Marino * following conditions are retained. 8*86d7f5d3SJohn Marino * 9*86d7f5d3SJohn Marino * This software is provided ``as is'', and comes with no warranties 10*86d7f5d3SJohn Marino * of any kind. I shall in no event be liable for anything that happens 11*86d7f5d3SJohn Marino * to anyone/anything when using this software. 12*86d7f5d3SJohn Marino */ 13*86d7f5d3SJohn Marino 14*86d7f5d3SJohn Marino #include "rand48.h" 15*86d7f5d3SJohn Marino 16*86d7f5d3SJohn Marino extern unsigned short _rand48_seed[3]; 17*86d7f5d3SJohn Marino 18*86d7f5d3SJohn Marino long mrand48(void)19*86d7f5d3SJohn Marinomrand48(void) 20*86d7f5d3SJohn Marino { 21*86d7f5d3SJohn Marino _dorand48(_rand48_seed); 22*86d7f5d3SJohn Marino return ((long) _rand48_seed[2] << 16) + (long) _rand48_seed[1]; 23*86d7f5d3SJohn Marino } 24