JustOS/linux-6.13/arch/x86/boot/compressed/error.h
justuser 02e73b8cd9 up
2025-01-24 17:00:19 +03:00

12 lines
281 B
C

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef BOOT_COMPRESSED_ERROR_H
#define BOOT_COMPRESSED_ERROR_H
#include <linux/compiler.h>
void warn(const char *m);
void error(char *m) __noreturn;
void panic(const char *fmt, ...) __noreturn __cold;
#endif /* BOOT_COMPRESSED_ERROR_H */