[COMMITTED PATCH] Remove explicit inline on malloc perturb functions.

Roland McGrath roland@hack.frob.com
Wed Dec 17 18:42:00 GMT 2014


2014-12-17  Roland McGrath  <roland@hack.frob.com>

	* malloc/malloc.c (alloc_perturb, free_perturb): Remove inline keyword.

--- a/malloc/malloc.c
+++ b/malloc/malloc.c
@@ -1854,14 +1854,14 @@ static int check_action = DEFAULT_CHECK_ACTION;
 
 static int perturb_byte;
 
-static inline void
+static void
 alloc_perturb (char *p, size_t n)
 {
   if (__glibc_unlikely (perturb_byte))
     memset (p, perturb_byte ^ 0xff, n);
 }
 
-static inline void
+static void
 free_perturb (char *p, size_t n)
 {
   if (__glibc_unlikely (perturb_byte))



More information about the Libc-alpha mailing list