1*68719375SJérôme Duval /* Copyright (C) 1995, 1996, 1997, 1998, 2001 Free Software Foundation, Inc.
25af32e75SAxel Dörfler This file is part of the GNU C Library.
35af32e75SAxel Dörfler Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, August 1995.
45af32e75SAxel Dörfler
55af32e75SAxel Dörfler The GNU C Library is free software; you can redistribute it and/or
65af32e75SAxel Dörfler modify it under the terms of the GNU Lesser General Public
75af32e75SAxel Dörfler License as published by the Free Software Foundation; either
85af32e75SAxel Dörfler version 2.1 of the License, or (at your option) any later version.
95af32e75SAxel Dörfler
105af32e75SAxel Dörfler The GNU C Library is distributed in the hope that it will be useful,
115af32e75SAxel Dörfler but WITHOUT ANY WARRANTY; without even the implied warranty of
125af32e75SAxel Dörfler MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
135af32e75SAxel Dörfler Lesser General Public License for more details.
145af32e75SAxel Dörfler
155af32e75SAxel Dörfler You should have received a copy of the GNU Lesser General Public
165af32e75SAxel Dörfler License along with the GNU C Library; if not, write to the Free
175af32e75SAxel Dörfler Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
185af32e75SAxel Dörfler 02111-1307 USA. */
195af32e75SAxel Dörfler
205af32e75SAxel Dörfler #include <stdlib.h>
215af32e75SAxel Dörfler
22*68719375SJérôme Duval /* Global state for non-reentrant functions. Defined in drand48-iter.c. */
23*68719375SJérôme Duval extern struct drand48_data __libc_drand48_data;
245af32e75SAxel Dörfler
255af32e75SAxel Dörfler long int
lrand48()265af32e75SAxel Dörfler lrand48 ()
275af32e75SAxel Dörfler {
285af32e75SAxel Dörfler long int result;
295af32e75SAxel Dörfler
305af32e75SAxel Dörfler (void) __nrand48_r (__libc_drand48_data.__x, &__libc_drand48_data, &result);
315af32e75SAxel Dörfler
325af32e75SAxel Dörfler return result;
335af32e75SAxel Dörfler }
34