diff options
author | Matt Turner <mattst88@gmail.com> | 2019-07-23 10:42:41 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2019-07-23 16:24:15 -0700 |
commit | b293e7e843cff28c4b925fb0db988395c040d0ef (patch) | |
tree | 32b1250bbfbf4bc675f9622cd7a25abd672f1aa6 | |
parent | f959d93f1cbbc82eb8e51eac638778e709184d4b (diff) |
libutil: Include stddef.h for NULL
Fixes: #5
Reviewed-by: Eric Engestrom <eric@engestrom.ch>
-rw-r--r-- | src/libutil/error.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libutil/error.c b/src/libutil/error.c index 7212748..d3b2666 100644 --- a/src/libutil/error.c +++ b/src/libutil/error.c @@ -30,6 +30,7 @@ #include "gluos.h" #include "gluint.h" +#include <stddef.h> #include <GL/glu.h> |