remove trailing whitespace
[coreboot.git] / src / console / die.c
index 5e12a6c82f3970f05e0f758e330953fd62008eac..395ab7553858cce26cec30247bcbf5103f1e470f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * This file is part of the coreboot project.
- * 
+ *
  * Copyright (C) 2003 Eric Biederman
  *
  * This program is free software; you can redistribute it and/or
 #include <arch/hlt.h>
 #include <console/console.h>
 
+#ifndef __ROMCC__
+#define NORETURN __attribute__((noreturn))
+#else
+#define NORETURN
+#endif
+
 /* Report a fatal error */
-void __attribute__((noreturn)) die(const char *msg)
+void NORETURN die(const char *msg)
 {
        print_emerg(msg);
        do {