xref: /dflybsd-src/lib/libc/gen/drand48.c (revision 86d7f5d305c6adaa56ff4582ece9859d73106103)
186d7f5d3SJohn Marino /*
286d7f5d3SJohn Marino  * Copyright (c) 1993 Martin Birgmeier
386d7f5d3SJohn Marino  * All rights reserved.
486d7f5d3SJohn Marino  *
586d7f5d3SJohn Marino  * You may redistribute unmodified or modified versions of this source
686d7f5d3SJohn Marino  * code provided that the above copyright notice and this and the
786d7f5d3SJohn Marino  * following conditions are retained.
886d7f5d3SJohn Marino  *
986d7f5d3SJohn Marino  * This software is provided ``as is'', and comes with no warranties
1086d7f5d3SJohn Marino  * of any kind. I shall in no event be liable for anything that happens
1186d7f5d3SJohn Marino  * to anyone/anything when using this software.
1286d7f5d3SJohn Marino  */
1386d7f5d3SJohn Marino 
1486d7f5d3SJohn Marino #include "rand48.h"
1586d7f5d3SJohn Marino 
1686d7f5d3SJohn Marino extern unsigned short _rand48_seed[3];
1786d7f5d3SJohn Marino 
1886d7f5d3SJohn Marino double
drand48(void)1986d7f5d3SJohn Marino drand48(void)
2086d7f5d3SJohn Marino {
2186d7f5d3SJohn Marino 	return erand48(_rand48_seed);
2286d7f5d3SJohn Marino }
23