mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-04-22 01:18:36 +03:00
11 lines
231 B
C
11 lines
231 B
C
#include <os/log.h>
|
|
|
|
// A wrapper so we can use the os_log_with_type macro.
|
|
void zig_os_log_with_type(
|
|
os_log_t log,
|
|
os_log_type_t type,
|
|
const char *message
|
|
) {
|
|
os_log_with_type(log, type, "%{public}s", message);
|
|
}
|