Inclusion of <alloca.h> is unneeded.
authorBen Pfaff <blp@gnu.org>
Sun, 31 Jul 2005 05:35:05 +0000 (05:35 +0000)
committerBen Pfaff <blp@gnu.org>
Sun, 31 Jul 2005 05:35:05 +0000 (05:35 +0000)
src/ChangeLog
src/algorithm.c

index 78208e4512fb1907dd55ce2012de13b55c6c81ee..a790250a2fe8949bb85f3d35ad4cff0e8974467f 100644 (file)
@@ -1,3 +1,7 @@
+Sat Jul 30 22:34:18 2005  Ben Pfaff  <blp@gnu.org>
+
+       * algorithm.c: Inclusion of <alloca.h> is unneeded.
+
 Sat Jul 30 22:01:32 2005  Ben Pfaff  <blp@gnu.org>
 
        * Make.build: Don't append -ansi to AM_CFLAGS for GCC.  Using
index ca427a0d49549acf11e8ce099ee1072a1793853d..54103b36d639f518a1db498947c431bf2e021242 100644 (file)
@@ -571,10 +571,6 @@ lexicographical_compare_3way (const void *array1, size_t count1,
    Engineering a sort function; Jon Bentley and M. Douglas McIlroy;
    Software - Practice and Experience; Vol. 23 (11), 1249-1265, 1993.  */
 
-#ifdef HAVE_ALLOCA_H
-#include <alloca.h>
-#endif
-
 #include <limits.h>
 #include <stdlib.h>
 #include <string.h>