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

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