blob: 7e3e2f86ad4f811cb035df6b16ded7e940a31cae [file] [log] [blame]
Brad Bishop00111322018-04-01 22:23:53 -04001Upstream-Status: Backport
2Signed-off-by: Ross Burton <ross.burton@intel.com>
Brad Bishopd7bf8c12018-02-25 22:55:05 -05003
Brad Bishop00111322018-04-01 22:23:53 -04004From acb9a37977cf0a9630eac74af9adebf35e38e719 Mon Sep 17 00:00:00 2001
5From: Thorsten Kukuk <kukuk@thkukuk.de>
6Date: Tue, 14 Nov 2017 10:39:08 -0500
7Subject: [PATCH] Include stdint.h from xdr_sizeof.c to avoid missing
8 declaration errors.
Brad Bishopd7bf8c12018-02-25 22:55:05 -05009
Brad Bishop00111322018-04-01 22:23:53 -040010Signed-off-by: Thorsten Kukuk <kukuk@suse.de>
11Signed-off-by: Steve Dickson <steved@redhat.com>
Brad Bishopd7bf8c12018-02-25 22:55:05 -050012---
Brad Bishopd7bf8c12018-02-25 22:55:05 -050013 src/xdr_sizeof.c | 1 +
14 1 file changed, 1 insertion(+)
15
16diff --git a/src/xdr_sizeof.c b/src/xdr_sizeof.c
17index d23fbd1..79d6707 100644
18--- a/src/xdr_sizeof.c
19+++ b/src/xdr_sizeof.c
20@@ -39,6 +39,7 @@
21 #include <rpc/xdr.h>
22 #include <sys/types.h>
23 #include <stdlib.h>
24+#include <stdint.h>
25 #include "un-namespace.h"
26
27 /* ARGSUSED */
28--
Brad Bishop00111322018-04-01 22:23:53 -0400291.8.3.1