aboutsummaryrefslogtreecommitdiffstats
path: root/src/error.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-08-30 15:27:18 +0200
committerMattias Andrée <maandree@operamail.com>2015-08-30 15:27:18 +0200
commitfda1aa1b784eb587e2129f4d2ddaa951c7b86b2f (patch)
treed923c1f4a14a3d6775cb5eb68bfecfafb8a50cf7 /src/error.c
parentwhitespace (diff)
downloadslibc-fda1aa1b784eb587e2129f4d2ddaa951c7b86b2f.tar.gz
slibc-fda1aa1b784eb587e2129f4d2ddaa951c7b86b2f.tar.bz2
slibc-fda1aa1b784eb587e2129f4d2ddaa951c7b86b2f.tar.xz
add missing inclusions of stddef.h to define NULL
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/error.c')
-rw-r--r--src/error.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/error.c b/src/error.c
index ee39ccf..eb73276 100644
--- a/src/error.c
+++ b/src/error.c
@@ -19,6 +19,7 @@
#include <unistd.h>
#include <stdio.h>
#include <errno.h>
+#include <stddef.h>