]> git.eshelyaron.com Git - emacs.git/commitdiff
Omit valloc decl if redundant
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 9 Feb 2016 23:24:08 +0000 (15:24 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 9 Feb 2016 23:25:58 +0000 (15:25 -0800)
* src/gmalloc.c (valloc): Omit decl if malloc.h is included,
to pacify --enable-gcc-warnings.

src/gmalloc.c

index dd18293dc7e5fb0039513977a7420e93dcf84183..d795c13f61600498ba225a346780deb7e8903bbf 100644 (file)
@@ -1683,14 +1683,17 @@ License along with this library.  If not, see <http://www.gnu.org/licenses/>.
    or (US mail) as Mike Haertel c/o Free Software Foundation.  */
 
 #ifndef HYBRID_MALLOC
+
+# ifndef HAVE_MALLOC_H
 /* Allocate SIZE bytes on a page boundary.  */
 extern void *valloc (size_t);
+# endif
 
-#if defined _SC_PAGESIZE || !defined HAVE_GETPAGESIZE
-# include "getpagesize.h"
-#elif !defined getpagesize
+# if defined _SC_PAGESIZE || !defined HAVE_GETPAGESIZE
+#  include "getpagesize.h"
+# elif !defined getpagesize
 extern int getpagesize (void);
-#endif
+# endif
 
 static size_t pagesize;