* nettle-internal.h: Include stdlib.h, fix alloca warnings on BSD.
* hmac.c: Delete corresponding include here, no longer needed.
2022-08-05 Niels Möller <nisse@lysator.liu.se>
+ * nettle-internal.h: Include stdlib.h, fix alloca warnings on BSD.
+ * hmac.c: Delete corresponding include here, no longer needed.
+
* getopt.c: Include stdlib.h and unistd.h unconditionally,
similarly to the gnulib version of this file.
#endif
#include <assert.h>
-/* Needed for alloca on freebsd */
-#include <stdlib.h>
#include <string.h>
#include "hmac.h"
#define NETTLE_INTERNAL_H_INCLUDED
#include <assert.h>
+/* Needed for alloca on bsd systems. */
+#include <stdlib.h>
#include "nettle-meta.h"