blob: 8fcf1dded5f1a5b5a0e5207eaa4dcee7f872644a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[PATCH] sockaddr.h: needs stddef.h for NULL
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
support/include/sockaddr.h | 1 +
1 file changed, 1 insertion(+)
Index: nfs-utils-1.2.6/support/include/sockaddr.h
===================================================================
--- nfs-utils-1.2.6.orig/support/include/sockaddr.h
+++ nfs-utils-1.2.6/support/include/sockaddr.h
@@ -25,6 +25,7 @@
#include <libio.h>
#endif
#include <stdbool.h>
+#include <stddef.h>
#include <sys/socket.h>
#include <netinet/in.h>
|