source:
trunk/minix/lib/stdio/vprintf.c@
10
Last change on this file since 10 was 9, checked in by , 14 years ago | |
---|---|
File size: 327 bytes |
Rev | Line | |
---|---|---|
[9] | 1 | /* |
2 | * vprintf - formatted output without ellipsis to the standard output stream | |
3 | */ | |
4 | /* $Header: /cvsup/minix/src/lib/stdio/vprintf.c,v 1.1.1.1 2005/04/21 14:56:36 beng Exp $ */ | |
5 | ||
6 | #include <stdio.h> | |
7 | #include <stdarg.h> | |
8 | #include "loc_incl.h" | |
9 | ||
10 | int | |
11 | vprintf(const char *format, va_list arg) | |
12 | { | |
13 | return _doprnt(format, arg, stdout); | |
14 | } |
Note:
See TracBrowser
for help on using the repository browser.