blob: a7640308de9a2ecd7bf715afa1fa98cdac105f1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* ISC license. */
/* MT-unsafe */
#include "random-internal.h"
#include <skalibs/rrandom.h>
#include <skalibs/random.h>
void goodrandom_finish (void)
{
rrandom_finish(&goodrandom_here) ;
}
|