Pull in <stddef.h> for NULL
authorguenther <guenther@openbsd.org>
Sat, 27 Aug 2016 03:52:25 +0000 (03:52 +0000)
committerguenther <guenther@openbsd.org>
Sat, 27 Aug 2016 03:52:25 +0000 (03:52 +0000)
(not stdio, because ld.so has a reduced library behind it)

libexec/ld.so/util.h

index 323a224..6c80ad8 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: util.h,v 1.27 2016/08/12 20:39:01 deraadt Exp $       */
+/*     $OpenBSD: util.h,v 1.28 2016/08/27 03:52:25 guenther Exp $      */
 
 /*
  * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -33,6 +33,7 @@
 
 #include <sys/utsname.h>
 #include <stdarg.h>
+#include <stddef.h>            /* for NULL */
 
 void *_dl_malloc(size_t size);
 void *_dl_calloc(size_t nmemb, const size_t size);