blob: 58491f8ae4357dba652084ba963f8d2d56cbcca3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* Copyright (c) 1989 University of Maryland
* Department of Computer Science. All rights reserved.
* Permission to copy for any purpose is hereby granted
* so long as this copyright notice remains intact.
*/
/*
* Errors.
*/
#include <kpathsea/config.h>
#include <kpathsea/c-vararg.h>
void error PVAR3H(int quit, int e, const char *fmt);
void panic PVAR1H(const char *fmt);
void SetErrorTrap(void (*fn)(int quit, char *text));
|