| 370 | } |
| 371 | |
| 372 | int ZEXPORTVA gzprintf(gzFile file, const char *format, ...) |
| 373 | { |
| 374 | va_list va; |
| 375 | int ret; |
| 376 | |
| 377 | va_start(va, format); |
| 378 | ret = gzvprintf(file, format, va); |
| 379 | va_end(va); |
| 380 | return ret; |
| 381 | } |
| 382 | |
| 383 | #else /* !STDC && !Z_HAVE_STDARG_H */ |
| 384 |
nothing calls this directly
no test coverage detected