diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2014-09-12 04:50:42 -0400 |
---|---|---|
committer | Steve Dickson <steved@redhat.com> | 2014-09-15 13:56:57 -0400 |
commit | 267c7a02eeecafa0b5e4265d43e548489e8ffbac (patch) | |
tree | 1257b3ac91de853d6020b3dbd922bc82744edc51 | |
parent | 20351c53dd0232b4344cc9ae448002c3f5a97c72 (diff) | |
download | nfs-utils-267c7a02eeecafa0b5e4265d43e548489e8ffbac.tar.gz nfs-utils-267c7a02eeecafa0b5e4265d43e548489e8ffbac.tar.xz nfs-utils-267c7a02eeecafa0b5e4265d43e548489e8ffbac.zip |
Fix header include for definition of NULL
NULL is defined in stdlib.h so we need to include that.
Signed-off-by: Natanael Copa <ncopa@alpinelinux.org>
Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r-- | support/include/sockaddr.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/support/include/sockaddr.h b/support/include/sockaddr.h index a1c30f9..446b537 100644 --- a/support/include/sockaddr.h +++ b/support/include/sockaddr.h @@ -27,6 +27,7 @@ #ifdef HAVE_LIBIO_H #include <libio.h> #endif +#include <stdlib.h> #include <stdbool.h> #include <sys/socket.h> #include <netinet/in.h> |