]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
Reverted change to include alloca.h. Should be fixed in acinclude.m4 instead.
authorNiels Möller <nisse@lysator.liu.se>
Sat, 7 Feb 2004 14:18:31 +0000 (15:18 +0100)
committerNiels Möller <nisse@lysator.liu.se>
Sat, 7 Feb 2004 14:18:31 +0000 (15:18 +0100)
Rev: src/nettle/ChangeLog:1.241
Rev: src/nettle/nettle-internal.h:1.6

ChangeLog
nettle-internal.h

index c54ff0f238b0ea7972f9260a27de9fb148073f4b..1d18653f2e46be642546b698a4401a7b9fc3cc21 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -24,9 +24,6 @@
 
        * examples/io.c (xalloc): New function.
 
-       * nettle-internal.h (TMP_ALLOC etc): Include <alloca.h> if
-       available.
-
        * Makefile.am (nodist_libnettleinclude_HEADERS): nettle-types.h
        should not be distributed.
 
index e0048b63c82b3ed72440626e7a17a7abdbe89656..d91f0f4ddacdce38994b973fb351609edb007a2a 100644 (file)
@@ -35,9 +35,6 @@
  * fix maximum size, and abort if we ever need anything larger. */
 
 #if HAVE_ALLOCA
-# if HAVE_ALLOCA_H
-#  include <alloca.h>
-# endif
 # define TMP_DECL(name, type, max) type *name
 # define TMP_ALLOC(name, size) (name = alloca(sizeof (*name) * size))
 #else /* !HAVE_ALLOCA */