ack/modules/src/print/fprint.c

16 lines
195 B
C
Raw Normal View History

1987-01-05 17:37:37 +00:00
/* $Header$ */
#include <system.h>
#include "param.h"
/*VARARGS1*/
fprint(fp, fmt, args)
File *fp;
char *fmt;
int args;
{
char buf[SSIZE];
sys_write(fp, buf, _format(buf, fmt, &args));
}