From: Ken Brown Date: Wed, 3 Feb 2016 18:27:08 +0000 (-0500) Subject: ; Fix last aligned_alloc declaration change X-Git-Tag: emacs-26.0.90~2752 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=60d712bba7ef0f3a80daa1757de70856a7af9a67;p=emacs.git ; Fix last aligned_alloc declaration change --- diff --git a/src/lisp.h b/src/lisp.h index a99002bddda..c8363be7a93 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -3775,7 +3775,7 @@ INLINE void (check_cons_list) (void) { lisp_h_check_cons_list (); } #if !defined DOUG_LEA_MALLOC && !defined HYBRID_MALLOC && !defined SYSTEM_MALLOC extern size_t __malloc_extra_blocks; #endif -#ifndef HAVE_DECL_ALIGNED_ALLOC +#if !HAVE_DECL_ALIGNED_ALLOC extern void *aligned_alloc (size_t, size_t) ATTRIBUTE_MALLOC_SIZE ((2)); #endif extern void malloc_enable_thread (void);