blob: 195382257a9e910cc0ab389d24cda1476eea17dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* 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.
*/
void error(/* int quit, int e, char *fmt, ... */);
void panic(/* char *fmt, ... */);
void SetErrorTrap(/* void (*fn)(int quit, char *text) */);
|