The R Project SVN R

Rev

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

Rev 57416 Rev 58576
Line 77... Line 77...
77
    return trio_vsnprintf(buffer, bufferSize, format, args);
77
    return trio_vsnprintf(buffer, bufferSize, format, args);
78
}
78
}
79
 
79
 
80
#ifndef _W64
80
#ifndef _W64
81
/* This is needed as MinGW's stdio.h has an inline vnsprintf mapping to
81
/* This is needed as MinGW's stdio.h has an inline vnsprintf mapping to
82
   _vsnprintf */
82
   _vsnprintf: MinGW-w64's maps to __imp__vsnprintf */
83
int _vsnprintf(char *buffer, size_t bufferSize, const char *format, va_list args)
83
int _vsnprintf(char *buffer, size_t bufferSize, const char *format, va_list args)
84
{
84
{
85
    return trio_vsnprintf(buffer, bufferSize, format, args);
85
    return trio_vsnprintf(buffer, bufferSize, format, args);
86
}
86
}
87
#endif
87
#endif