| 240 | } |
| 241 | |
| 242 | void trace_argv_printf_fl(const char *file, int line, const char **argv, |
| 243 | const char *format, ...) |
| 244 | { |
| 245 | va_list ap; |
| 246 | va_start(ap, format); |
| 247 | trace_argv_vprintf_fl(file, line, argv, format, ap); |
| 248 | va_end(ap); |
| 249 | } |
| 250 | |
| 251 | void trace_performance_fl(const char *file, int line, uint64_t nanos, |
| 252 | const char *format, ...) |
nothing calls this directly
no test coverage detected