https://github.com/cran/IDPmisc
Raw File
Tip revision: f5c0af4bb057bde4d584a4ae0cf32bfd5c76df60 authored by Christoph Hofer on 08 February 2024, 23:50:10 UTC
version 1.1.21
Tip revision: f5c0af4
init.c
#include <stdlib.h> // for NULL
#include <R_ext/Rdynload.h>

/* .C calls */
extern void lwreg(double *, double *, int *, int *, double *, double *, double *);

static const R_CMethodDef CEntries[] = {
    {"lwreg", (DL_FUNC) &lwreg, 7},
    {NULL, NULL, 0}
};

void R_init_IDPmisc(DllInfo *dll)
{
    R_registerRoutines(dll, CEntries, NULL, NULL, NULL);
    R_useDynamicSymbols(dll, FALSE);
    R_forceSymbols(dll, TRUE);
}
back to top