xref: /minix3/minix/lib/libsys/kprintf.c (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1 /*	printf() - system services printf()		Author: Kees J. Bot
2  *								15 Jan 1994
3  */
4 #define nil 0
5 #include <stdarg.h>
6 #include <stdio.h>
7 #include <stddef.h>
8 #include <limits.h>
9 
printf(const char * fmt,...)10 int printf(const char *fmt, ...)
11 {
12 	int n;
13 	va_list ap;
14 
15 	va_start(ap, fmt);
16 	n = vprintf(fmt, ap);
17 	va_end(ap);
18 
19 	return n;
20 }
21 
22