blob: b56c91516d082399a315534d6b779597d39b24ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
$NetBSD: patch-textio_textio.h,v 1.2 2013/03/07 22:05:13 joerg Exp $
--- textio/textio.h.orig 2013-03-02 22:26:17.000000000 +0000
+++ textio/textio.h
@@ -25,6 +25,7 @@
#ifndef _TEXTIO_H
#define _TEXTIO_H
+#include <stdarg.h>
#include "utils/magic.h"
#ifdef MAGIC_WRAPPER
@@ -65,6 +66,7 @@ extern void TxUseMore();
extern void TxStopMore();
/* printing procedures with variable arguments lists */
+extern void VTxError(char *, va_list);
extern void TxError(char *, ...);
extern void TxPrintf(char *, ...);
extern char *TxPrintString(char *, ...);
|