diff --git a/DESCRIPTION b/DESCRIPTION index 9d4de2c..bdc7cb8 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -9,7 +9,7 @@ Author: Jeroen Ooms, Duncan Temple Lang, Lloyd Hilaiel URL: https://arxiv.org/abs/1403.2805, https://www.opencpu.org/posts/jsonlite-a-smarter-json-encoder BugReports: http://github.com/jeroenooms/jsonlite/issues -Maintainer: Jeroen Ooms +Maintainer: Jeroen Ooms VignetteBuilder: knitr, R.rsp Description: A fast JSON parser and generator optimized for statistical data and the web. Started out as a fork of 'RJSONIO', but has been completely diff --git a/src/register.c b/src/register.c new file mode 100644 index 0000000..aaeeb09 --- /dev/null +++ b/src/register.c @@ -0,0 +1,7 @@ +#include +#include + +void R_init_jsonlite(DllInfo* info) { + R_registerRoutines(info, NULL, NULL, NULL, NULL); + R_useDynamicSymbols(info, TRUE); +}