Displaying 1 result from an estimated 1 matches for "attribute_visible".
2014 Apr 21
1
read.table() code fails outside of the utils package
...f read.table() instead did this, which ran fine from
any package; this entry point no longer exists:
.Internal(readTableHead(file, nlines, comment.char, blank.lines.skip, quote, sep))
The C implementation of readTableHead is in utils.so, but the symbol
is marked as local. I tried adding "attribute_visible" to its
function definition in "src/library/utils/src/io.c" and recompiling,
which DID make the symbol globally visible. With that change, my own
C code works just fine when calling readTableHead. But interestingly,
R code using .External() like this still fails:
.External(&quo...