https://github.com/cran/purrr
Raw File
Tip revision: 021a807377fae3212c6d6e552da80f8901520116 authored by Lionel Henry on 18 October 2019, 11:40:05 UTC
version 0.3.3
Tip revision: 021a807
backports.h
#ifndef BACKPORTS_H
#define BACKPORTS_H

#include <Rversion.h>

#if defined(R_VERSION) && R_VERSION < R_Version(3, 2, 0)
SEXP Rf_installChar(SEXP x);
#endif

#endif
back to top