From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on sa.int.altlinux.org X-Spam-Level: X-Spam-Status: No, score=-8.3 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_HI, SPF_PASS autolearn=ham version=3.2.5 From: Mike Frysinger To: kbd@lists.altlinux.org Date: Mon, 6 Jan 2014 10:27:56 -0500 Message-Id: <1389022076-23320-1-git-send-email-vapier@gentoo.org> X-Mailer: git-send-email 1.8.4.3 Subject: [kbd] [PATCH] libkeymap: include stdarg.h where used X-BeenThere: kbd@lists.altlinux.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: Linux console tools development discussion List-Id: Linux console tools development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Jan 2014 15:28:12 -0000 Archived-At: List-Archive: Some of these headers use va_list but don't include stdarg.h for it. Reported-by: Anthony Basile Signed-off-by: Mike Frysinger --- src/libkeymap/contextP.h | 2 ++ src/libkeymap/keymap/common.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/libkeymap/contextP.h b/src/libkeymap/contextP.h index e3798e3..8ee3fab 100644 --- a/src/libkeymap/contextP.h +++ b/src/libkeymap/contextP.h @@ -1,6 +1,8 @@ #ifndef LK_CONTEXTP_H #define LK_CONTEXTP_H +#include + #include "keymap.h" /** diff --git a/src/libkeymap/keymap/common.h b/src/libkeymap/keymap/common.h index 6b9cead..987b564 100644 --- a/src/libkeymap/keymap/common.h +++ b/src/libkeymap/keymap/common.h @@ -6,6 +6,8 @@ #ifndef LK_COMMON_H #define LK_COMMON_H +#include + #include /** Initializes the structures necessary to read and/or parse keymap. -- 1.8.4.3