| 820 | } |
| 821 | |
| 822 | int __cdecl printf(const char *format, ...) |
| 823 | { |
| 824 | int retval; |
| 825 | va_list args; |
| 826 | |
| 827 | if (!format) |
| 828 | return 0; |
| 829 | |
| 830 | va_start(args, format); |
| 831 | retval = vprintf(format, args); |
| 832 | va_end(args); |
| 833 | |
| 834 | return retval; |
| 835 | } |
| 836 | |
| 837 | int __cdecl vprintf(const char *format, va_list args) |
| 838 | { |