dhcpcd: update README.DRAGONFLY
[dragonfly.git] / contrib / gmp / rands.c
blob93eb3e70cb184e3a970c9d3ab78b317656e68a25
1 /* __gmp_rands -- global random state for old-style random functions.
3 EVERYTHING IN THIS FILE IS FOR INTERNAL USE ONLY. IT'S ALMOST CERTAIN TO
4 BE SUBJECT TO INCOMPATIBLE CHANGES OR DISAPPEAR COMPLETELY IN FUTURE GNU
5 MP RELEASES. */
7 /*
8 Copyright 2001 Free Software Foundation, Inc.
10 This file is part of the GNU MP Library.
12 The GNU MP Library is free software; you can redistribute it and/or modify
13 it under the terms of the GNU Lesser General Public License as published by
14 the Free Software Foundation; either version 3 of the License, or (at your
15 option) any later version.
17 The GNU MP Library is distributed in the hope that it will be useful, but
18 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
20 License for more details.
22 You should have received a copy of the GNU Lesser General Public License
23 along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */
25 #include "gmp.h"
26 #include "gmp-impl.h"
29 /* Use this via the RANDS macro in gmp-impl.h */
30 char __gmp_rands_initialized = 0;
31 gmp_randstate_t __gmp_rands;