source: trunk/minix/lib/stdio/vfprintf.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 315 bytes
Line 
1/*
2 * vfprintf - formatted output without ellipsis
3 */
4/* $Header: /cvsup/minix/src/lib/stdio/vfprintf.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
10int
11vfprintf(FILE *stream, const char *format, va_list arg)
12{
13 return _doprnt (format, arg, stream);
14}
Note: See TracBrowser for help on using the repository browser.