Skip to content
Snippets Groups Projects
Commit 667b0662 authored by Niels Möller's avatar Niels Möller
Browse files

Reverted change to include alloca.h. Should be fixed in acinclude.m4 instead.

Rev: src/nettle/ChangeLog:1.241
Rev: src/nettle/nettle-internal.h:1.6
parent 07fc2871
No related branches found
No related tags found
No related merge requests found
......@@ -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.
......
......@@ -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 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment