/* * vprintf - formatted output without ellipsis to the standard output stream */ /* $Id$ */ #include #include #include "loc_incl.h" int vprintf(const char *format, va_list arg) { return _doprnt(format, arg, stdout); }