The R Project SVN R

Rev

Rev 42424 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 42424 Rev 44890
Line 107... Line 107...
107
double NA_REAL = ML_NAN;
107
double NA_REAL = ML_NAN;
108
double R_PosInf = ML_POSINF, R_NegInf = ML_NEGINF;
108
double R_PosInf = ML_POSINF, R_NegInf = ML_NEGINF;
109
 
109
 
110
#include <stdio.h>
110
#include <stdio.h>
111
#include <stdarg.h>
111
#include <stdarg.h>
112
void attribute_hidden REprintf(char *format, ...)
112
void attribute_hidden REprintf(const char *format, ...)
113
{
113
{
114
    va_list(ap);
114
    va_list(ap);
115
    va_start(ap, format);
115
    va_start(ap, format);
116
    fprintf(stderr, format, ap);
116
    fprintf(stderr, format, ap);
117
    va_end(ap);
117
    va_end(ap);