mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-11-05 13:29:47 -05:00
9 lines
220 B
C
9 lines
220 B
C
#ifndef UTIL_TRACE_H
|
|
#define UTIL_TRACE_H
|
|
|
|
#include <wlr/util/log.h>
|
|
|
|
void wlr_trace(const char *format, ...) _WLR_ATTRIB_PRINTF(1, 2);
|
|
void wlr_vtrace(const char *format, va_list args) _WLR_ATTRIB_PRINTF(1, 0);
|
|
|
|
#endif
|