# HG changeset patch # User Kim Alvefur # Date 1456178165 -3600 # Node ID 72839cafdf36c4d55549fae0bf1b5654839b4946 # Parent 3d2c2f0809ee3a7c27e266e20d164be2e844e826 util.crand: Include stdlib.h instead of malloc.h for portability (thanks Tobias) diff -r 3d2c2f0809ee -r 72839cafdf36 util-src/crand.c --- a/util-src/crand.c Mon Feb 22 18:44:43 2016 +0100 +++ b/util-src/crand.c Mon Feb 22 22:56:05 2016 +0100 @@ -23,7 +23,7 @@ * TODO: Decide on fixed size or dynamically allocated buffer */ #if 1 -#include +#include #else #define BUFLEN 256 #endif