KernelSU/kernel/klog.h

11 lines
149 B
C
Raw Normal View History

2022-12-09 22:03:03 +08:00
#ifndef __KSU_H_KLOG
#define __KSU_H_KLOG
2023-01-25 22:24:00 +08:00
#include <linux/printk.h>
2022-12-09 22:03:03 +08:00
#ifdef pr_fmt
#undef pr_fmt
#define pr_fmt(fmt) "KernelSU: " fmt
#endif
#endif