summaryrefslogtreecommitdiff
path: root/Build/source/texk/seetexk/error.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/seetexk/error.h')
-rw-r--r--Build/source/texk/seetexk/error.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/Build/source/texk/seetexk/error.h b/Build/source/texk/seetexk/error.h
index 58491f8ae43..4074126680e 100644
--- a/Build/source/texk/seetexk/error.h
+++ b/Build/source/texk/seetexk/error.h
@@ -9,10 +9,9 @@
* Errors.
*/
-#include <kpathsea/config.h>
-#include <kpathsea/c-vararg.h>
+#include <stdarg.h>
-void error PVAR3H(int quit, int e, const char *fmt);
-void panic PVAR1H(const char *fmt);
+void error(int quit, int e, const char *fmt, ...);
+void panic(const char *fmt, ...);
void SetErrorTrap(void (*fn)(int quit, char *text));