@@ -2146,7 +2146,7 @@ void R_getProcTime(double *data);
21462146Rboolean R_isMissing (SEXP symbol , SEXP rho );
21472147Rboolean R_missing (SEXP symbol , SEXP rho );
21482148const char * sexptype2char (SEXPTYPE type );
2149- void sortVector (SEXP , Rboolean );
2149+ void sortVector (SEXP , bool );
21502150void SrcrefPrompt (const char * , SEXP );
21512151void ssort (SEXP * ,int );
21522152int StrToInternal (const char * );
@@ -2265,8 +2265,8 @@ const char *EncodeChar(SEXP);
22652265int mbrtoint (int * w , const char * s );
22662266
22672267/* main/sort.c */
2268- void orderVector1 (int * indx , int n , SEXP key , Rboolean nalast ,
2269- Rboolean decreasing , SEXP rho );
2268+ void orderVector1 (int * indx , int n , SEXP key , bool nalast ,
2269+ bool decreasing , SEXP rho );
22702270
22712271/* main/subset.c */
22722272SEXP R_subset3_dflt (SEXP , SEXP , SEXP );
@@ -2428,6 +2428,7 @@ extern void *alloca(size_t);
24282428
24292429/* int_fast64_t is required by C99/C11
24302430 Alternative would be to use intmax_t.
2431+ Used in summary.c
24312432 */
24322433#ifdef HAVE_INT64_T
24332434# define LONG_INT int64_t
0 commit comments