1
0
mirror of https://salsa.debian.org/games-team/bsdgames synced 2024-11-02 16:37:17 -04:00
bsdgames/debian/patches/Define-__dead-for-GNU-GCC.patch
2012-02-25 18:04:35 +01:00

22 lines
554 B
Diff

From: Tobias Quathamer <toddy@debian.org>
Date: Thu, 16 Feb 2012 11:26:51 +0100
Subject: Define __dead for GNU GCC
---
include/sys/cdefs.h | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/include/sys/cdefs.h b/include/sys/cdefs.h
index 138eaa8..f6e87c2 100644
--- a/include/sys/cdefs.h
+++ b/include/sys/cdefs.h
@@ -40,3 +40,7 @@
#ifndef __COPYRIGHT
#define __COPYRIGHT(arg) static const char copyright[] __attribute__((__unused__)) = arg
#endif
+
+#ifndef __dead
+#define __dead __attribute__((__noreturn__))
+#endif
--