You've already forked linux-rockchip
mirror of
https://github.com/armbian/linux-rockchip.git
synced 2026-01-06 11:08:10 -08:00
20 lines
311 B
C
20 lines
311 B
C
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
|
#ifndef _TOOLS_LINUX_PANIC_H
|
||
|
|
#define _TOOLS_LINUX_PANIC_H
|
||
|
|
|
||
|
|
#include <stdarg.h>
|
||
|
|
#include <stdio.h>
|
||
|
|
#include <stdlib.h>
|
||
|
|
|
||
|
|
static inline void panic(const char *fmt, ...)
|
||
|
|
{
|
||
|
|
va_list argp;
|
||
|
|
|
||
|
|
va_start(argp, fmt);
|
||
|
|
vfprintf(stderr, fmt, argp);
|
||
|
|
va_end(argp);
|
||
|
|
exit(-1);
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|