Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 15 of file printf.c.
{ va_list argptr; int result; va_start(argptr, format); result = vfprintf(stdout, format, argptr); va_end(argptr); return result; }