The R Project SVN R

Rev

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

Rev 36820 Rev 36986
Line 130... Line 130...
130
double NA_REAL = ML_NAN;
130
double NA_REAL = ML_NAN;
131
double R_PosInf = ML_POSINF, R_NegInf = ML_NEGINF;
131
double R_PosInf = ML_POSINF, R_NegInf = ML_NEGINF;
132
 
132
 
133
#include <stdio.h>
133
#include <stdio.h>
134
#include <stdarg.h>
134
#include <stdarg.h>
135
void REprintf(char *format, ...)
135
void attribute_hidden REprintf(char *format, ...)
136
{
136
{
137
    va_list(ap);
137
    va_list(ap);
138
    va_start(ap, format);
138
    va_start(ap, format);
139
    fprintf(stderr, format, ap);
139
    fprintf(stderr, format, ap);
140
    va_end(ap);
140
    va_end(ap);