Blame SOURCES/0080-grub-core-kern-misc.c-__bzero-Don-t-compile-in-GRUB_.patch

39700a
From ec4609b70a7deebf6381297aae95dd4bf05bd008 Mon Sep 17 00:00:00 2001
39700a
From: Vladimir Serbinenko <phcoder@gmail.com>
39700a
Date: Sun, 20 Apr 2014 16:12:41 +0200
39700a
Subject: [PATCH 080/143] 	* grub-core/kern/misc.c (__bzero): Don't
39700a
 compile in GRUB_UTIL.
39700a
39700a
	Reported by: Yves Blusseau <blusseau@zetam.org>.
39700a
---
39700a
 ChangeLog             | 6 ++++++
39700a
 grub-core/kern/misc.c | 3 +++
39700a
 2 files changed, 9 insertions(+)
39700a
39700a
diff --git a/ChangeLog b/ChangeLog
39700a
index 73a8928..3b61c0a 100644
39700a
--- a/ChangeLog
39700a
+++ b/ChangeLog
39700a
@@ -1,3 +1,9 @@
39700a
+2014-04-20  Vladimir Serbinenko  <phcoder@gmail.com>
39700a
+
39700a
+	* grub-core/kern/misc.c (__bzero): Don't compile in GRUB_UTIL.
39700a
+
39700a
+	Reported by: Yves Blusseau <blusseau@zetam.org>.
39700a
+
39700a
 2014-04-20  Piotr Krysiuk  <piotras@gmail.com>
39700a
 
39700a
 	* grub-core/lib/i386/relocator.c: Allow loading old kernels by placing
39700a
diff --git a/grub-core/kern/misc.c b/grub-core/kern/misc.c
39700a
index 54db2e1..c5c815d 100644
39700a
--- a/grub-core/kern/misc.c
39700a
+++ b/grub-core/kern/misc.c
39700a
@@ -542,6 +542,9 @@ memset (void *s, int c, grub_size_t n)
39700a
   return grub_memset (s, c, n);
39700a
 }
39700a
 
39700a
+#endif
39700a
+
39700a
+#if !defined(GRUB_UTIL) && defined(__APPLE__)
39700a
 void GRUB_BUILTIN_ATTR
39700a
 __bzero (void *s, grub_size_t n)
39700a
 {
39700a
-- 
39700a
1.9.3
39700a