linux-zen-desktop/arch/x86/boot/compressed/error.h

12 lines
275 B
C
Raw Permalink Normal View History

2023-08-30 17:31:07 +02:00
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef BOOT_COMPRESSED_ERROR_H
#define BOOT_COMPRESSED_ERROR_H
#include <linux/compiler.h>
void warn(char *m);
void error(char *m) __noreturn;
2023-10-24 12:59:35 +02:00
void panic(const char *fmt, ...) __noreturn __cold;
2023-08-30 17:31:07 +02:00
#endif /* BOOT_COMPRESSED_ERROR_H */