source:
bootcd/isolinux/syslinux-6.03/com32/lib/printf.c
Last change on this file was e16e8f2, checked in by , 3 years ago | |
---|---|
|
|
File size: 225 bytes |
Line | |
---|---|
1 | /* |
2 | * printf.c |
3 | */ |
4 | |
5 | #include <stdio.h> |
6 | #include <stdarg.h> |
7 | |
8 | int printf(const char *format, ...) |
9 | { |
10 | va_list ap; |
11 | int rv; |
12 | |
13 | va_start(ap, format); |
14 | rv = vfprintf(stdout, format, ap); |
15 | va_end(ap); |
16 | return rv; |
17 | } |
Note: See TracBrowser
for help on using the repository browser.