Blame SOURCES/0001-Remove-invalid-pure_func-qualifiers.patch

2c880c
From d0dabb46a821b2506681f882af0d5696d2c2bade Mon Sep 17 00:00:00 2001
2c880c
From: Michael Simacek <msimacek@redhat.com>
2c880c
Date: Thu, 8 Feb 2018 14:47:08 +0100
2c880c
Subject: [PATCH] Remove invalid pure_func qualifiers
2c880c
2c880c
---
2c880c
 include/nasmlib.h | 4 ++--
2c880c
 1 file changed, 2 insertions(+), 2 deletions(-)
2c880c
2c880c
diff --git a/include/nasmlib.h b/include/nasmlib.h
2c880c
index 79e866b..c93cef0 100644
2c880c
--- a/include/nasmlib.h
2c880c
+++ b/include/nasmlib.h
2c880c
@@ -191,8 +191,8 @@ int64_t readstrnum(char *str, int length, bool *warn);
2c880c
  * seg_init: Initialise the segment-number allocator.
2c880c
  * seg_alloc: allocate a hitherto unused segment number.
2c880c
  */
2c880c
-void pure_func seg_init(void);
2c880c
-int32_t pure_func seg_alloc(void);
2c880c
+void seg_init(void);
2c880c
+int32_t seg_alloc(void);
2c880c
 
2c880c
 /*
2c880c
  * many output formats will be able to make use of this: a standard
2c880c
-- 
2c880c
2.14.3
2c880c