The deprecated legacy typedefs of Sint and Sfloat in header ‘R.h’ are no longer defined, and that header no longer includes header ‘limits.h’ from C nor ‘climits’ from C++.
Sint was defined in R.h simply as:
typedef int Sint
So I just replaced all references to Sint with int!
library(devtools)install_github("edwindj/ffbase", subdir="pkg") # master branch, though giving errors as of 2023-06-20install_github("skysyzygy/ffbase", subdir="pkg")
According to the R 4.3.0 release notes
Sint was defined in R.h simply as:
typedef int Sint
So I just replaced all references to Sint with int!