28 lines
621 B
Diff
28 lines
621 B
Diff
|
From 3fb3cb779c535ec28cbba80573bbea42435108c0 Mon Sep 17 00:00:00 2001
|
||
|
From: Andreas Klinger <ak@it-klinger.de>
|
||
|
Date: Mon, 4 Jan 2021 20:48:41 +0100
|
||
|
Subject: [PATCH] printxf.h: add stdarg.h in include
|
||
|
|
||
|
Include of <stdarg.h> is needed for va_list.
|
||
|
|
||
|
Signed-off-by: Andreas Klinger <ak@it-klinger.de>
|
||
|
---
|
||
|
include/ply/printxf.h | 1 +
|
||
|
1 file changed, 1 insertion(+)
|
||
|
|
||
|
diff --git a/include/ply/printxf.h b/include/ply/printxf.h
|
||
|
index a59f0d2..e985936 100644
|
||
|
--- a/include/ply/printxf.h
|
||
|
+++ b/include/ply/printxf.h
|
||
|
@@ -8,6 +8,7 @@
|
||
|
#define _PRINTXF_H
|
||
|
|
||
|
#include <stdio.h>
|
||
|
+#include <stdarg.h>
|
||
|
|
||
|
struct printxf;
|
||
|
|
||
|
--
|
||
|
2.20.1
|
||
|
|