1
0
Fork 0
alistair23-linux/tools/bootconfig/include/linux/printk.h

15 lines
269 B
C

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _SKC_LINUX_PRINTK_H
#define _SKC_LINUX_PRINTK_H
#include <stdio.h>
#define printk(fmt, ...) printf(fmt, ##__VA_ARGS__)
#define pr_err printk
#define pr_warn printk
#define pr_info printk
#define pr_debug printk
#endif