mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-12-21 00:20:04 +01:00
10 lines
220 B
C
10 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
|