home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD2.mdf
/
gnu
/
djgpp
/
src
/
binutils.2
/
libibert
/
vfprintf.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-05-30
|
184 b
|
13 lines
#include <stdio.h>
#include <varargs.h>
#undef vfprintf
int
vfprintf (file, format, ap)
FILE *file;
char *format;
va_list ap;
{
return _doprnt (format, ap, file);
}