swc

Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.nihaljere.xyz/swc
Log | Files | Refs | README | LICENSE

commit 2f77af271bb4a1aa96bf4a554780b40169908e66
parent 673246c909bfd92e09f85cbe47a0d3ef4f77cc17
Author: Michael Forney <mforney@mforney.org>
Date:   Thu, 24 Oct 2013 13:38:11 -0700

util: Add missing include for stdlib.h

Required for NULL

Diffstat:
Mlibswc/util.h | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/libswc/util.h b/libswc/util.h @@ -1,6 +1,7 @@ #ifndef SWC_UTIL_H #define SWC_UTIL_H 1 +#include <stdlib.h> #include <stdbool.h> #include <sys/time.h> #include <sys/param.h>