| 490 | } |
| 491 | |
| 492 | int ZEXPORTVA gzprintf(gzFile file, const char* format, ...) |
| 493 | { |
| 494 | va_list va; |
| 495 | int ret; |
| 496 | |
| 497 | va_start(va, format); |
| 498 | ret = gzvprintf(file, format, va); |
| 499 | va_end(va); |
| 500 | return ret; |
| 501 | } |
| 502 | |
| 503 | #else /* !STDC && !Z_HAVE_STDARG_H */ |
| 504 |
nothing calls this directly
no test coverage detected