Blame SOURCES/0009-ethernetdb.h-Remove-C-specific-compiler-hint-macro-_.patch

05e71a
From 53fb609bce104b316052acec39437c62407634e9 Mon Sep 17 00:00:00 2001
05e71a
From: Felix Janda <felix.janda@posteo.de>
05e71a
Date: Sat, 16 May 2015 12:31:58 +0200
05e71a
Subject: [PATCH] ethernetdb.h: Remove C++ specific compiler hint macro _THROW
05e71a
05e71a
Fixes compilation with musl libc
05e71a
05e71a
Signed-off-by: Felix Janda <felix.janda@posteo.de>
05e71a
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
05e71a
Signed-off-by: Phil Sutter <psutter@redhat.com>
05e71a
---
05e71a
 include/ethernetdb.h | 11 +++++------
05e71a
 1 file changed, 5 insertions(+), 6 deletions(-)
05e71a
05e71a
diff --git a/include/ethernetdb.h b/include/ethernetdb.h
05e71a
index 46d8bfd1b7e58..1683abe01987e 100644
05e71a
--- a/include/ethernetdb.h
05e71a
+++ b/include/ethernetdb.h
05e71a
@@ -38,21 +38,20 @@ struct ethertypeent {
05e71a
 
05e71a
 /* Open ethertype data base files and mark them as staying open even
05e71a
    after a later search if STAY_OPEN is non-zero.  */
05e71a
-extern void setethertypeent(int __stay_open) __THROW;
05e71a
+extern void setethertypeent(int __stay_open);
05e71a
 
05e71a
 /* Close ethertype data base files and clear `stay open' flag.  */
05e71a
-extern void endethertypeent(void) __THROW;
05e71a
+extern void endethertypeent(void);
05e71a
 
05e71a
 /* Get next entry from ethertype data base file.  Open data base if
05e71a
    necessary.  */
05e71a
-extern struct ethertypeent *getethertypeent(void) __THROW;
05e71a
+extern struct ethertypeent *getethertypeent(void);
05e71a
 
05e71a
 /* Return entry from ethertype data base for network with NAME.  */
05e71a
-extern struct ethertypeent *getethertypebyname(__const char *__name)
05e71a
-    __THROW;
05e71a
+extern struct ethertypeent *getethertypebyname(__const char *__name);
05e71a
 
05e71a
 /* Return entry from ethertype data base which number is PROTO.  */
05e71a
-extern struct ethertypeent *getethertypebynumber(int __ethertype) __THROW;
05e71a
+extern struct ethertypeent *getethertypebynumber(int __ethertype);
05e71a
 
05e71a
 
05e71a
 #endif				/* ethernetdb.h */
05e71a
-- 
05e71a
2.21.0
05e71a