xref: /OK3568_Linux_fs/buildroot/package/ply/0002-printxf.h-add-stdarg.h-in-include.patch (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1From 3fb3cb779c535ec28cbba80573bbea42435108c0 Mon Sep 17 00:00:00 2001
2From: Andreas Klinger <ak@it-klinger.de>
3Date: Mon, 4 Jan 2021 20:48:41 +0100
4Subject: [PATCH] printxf.h: add stdarg.h in include
5
6Include of <stdarg.h> is needed for va_list.
7
8Signed-off-by: Andreas Klinger <ak@it-klinger.de>
9---
10 include/ply/printxf.h | 1 +
11 1 file changed, 1 insertion(+)
12
13diff --git a/include/ply/printxf.h b/include/ply/printxf.h
14index a59f0d2..e985936 100644
15--- a/include/ply/printxf.h
16+++ b/include/ply/printxf.h
17@@ -8,6 +8,7 @@
18 #define _PRINTXF_H
19
20 #include <stdio.h>
21+#include <stdarg.h>
22
23 struct printxf;
24
25--
262.20.1
27
28