ack/lang/cem/libcc/stdio/printf.c
1987-01-27 15:57:55 +00:00

11 lines
161 B
C

#include <stdio.h>
printf (fmt, args)
char *fmt;
int args;
{
_doprnt (fmt, &args, stdout);
if ( io_testflag(stdout,IO_PERPRINTF) )
fflush(stdout);
}