summaryrefslogtreecommitdiff
path: root/sys/src/libstdio/printf.c
blob: 8880b9d8da877d9563e97236d40d1a94040e1b0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * pANS stdio -- printf
 */
#include "iolib.h"
int printf(const char *fmt, ...){
	int n;
	va_list args;
	va_start(args, fmt);
	n=vfprintf(stdout, fmt, args);
	va_end(args);
	return n;
}