tree: drop last paragraph of GPL copyright header
[coreboot.git] / src / console / die.c
blobea46f51dfad37a7c07b47f595c66437a684e6451
1 /*
2 * This file is part of the coreboot project.
4 * Copyright (C) 2003 Eric Biederman
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * the License.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 #include <arch/io.h>
18 #include <console/console.h>
19 #include <halt.h>
21 #ifndef __ROMCC__
22 #define NORETURN __attribute__((noreturn))
24 /* Report a fatal error */
25 void NORETURN die(const char *msg)
27 printk(BIOS_EMERG, "%s", msg);
28 halt();
30 #endif