Rev: src/nettle/ChangeLog:1.241
Rev: src/nettle/nettle-internal.h:1.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.
* 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 */