conterm/libc/fprint.c

16 lines
194 B
C
Raw Normal View History

2006-01-17 16:55:02 +03:00
#include <u.h>
#include <libc.h>
2006-01-17 15:37:52 +03:00
#include "fmtdef.h"
2005-08-08 16:50:13 +04:00
int
fprint(int fd, char *fmt, ...)
{
int n;
va_list args;
va_start(args, fmt);
n = vfprint(fd, fmt, args);
va_end(args);
return n;
}