home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 7
/
FreshFishVol7.bin
/
bbs
/
gnu
/
gdb-4.12-src.lha
/
GNU
/
src
/
amiga
/
gdb-4.12
/
libiberty
/
vfprintf.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-02-03
|
212b
|
14 lines
#include <stdio.h>
#include <varargs.h>
#include <ansidecl.h>
#undef vfprintf
int
vfprintf (file, format, ap)
FILE *file;
const char *format;
va_list ap;
{
return _doprnt (format, ap, file);
}