https://github.com/cran/quantreg
Raw File
Tip revision: 67095c96090cdfc0479abf9916e8ddcbf8ca316e authored by Roger Koenker on 10 January 2021, 22:30:06 UTC
version 5.82
Tip revision: 67095c9
frand.c
#include <R.h> 
#include <Rmath.h> 

void F77_SUB(fseedi)(void) 
{ 
   GetRNGstate(); 
} 
void F77_SUB(fseedo)(void) 
{ 
   PutRNGstate(); 
} 
void F77_SUB(frexp)(double* px, double* pa) 
{ 
        *px = rexp(*pa); 
} 
back to top