-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* File src/init.c in package ergm.userterms, part of the Statnet suite | ||
* of packages for network analysis, https://statnet.org . | ||
* | ||
* This software is distributed under the GPL-3 license. It is free, | ||
* open source, and has the attribution requirements (GPL Section 7) at | ||
* https://statnet.org/attribution | ||
* | ||
* Copyright 2012-2019 Statnet Commons | ||
*/ | ||
#include <stdlib.h> // for NULL | ||
#include <R_ext/Rdynload.h> | ||
|
||
static const R_CMethodDef CEntries[] = { | ||
{NULL, NULL, 0} | ||
}; | ||
|
||
void R_init_ergm_ego(DllInfo *dll) | ||
{ | ||
R_registerRoutines(dll, CEntries, NULL, NULL, NULL); | ||
R_useDynamicSymbols(dll, TRUE); | ||
} |