blob: 146c76b7a12a4bfcb7e20a8babd5879c3a387879 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
errmsg.c
last touched in Par 1.53.0
last meaningful change in Par 1.40
Copyright 1993 Adam M. Costello
This is ANSI C code (C89).
*/
#include "errmsg.h" /* Makes sure we're consistent with the declarations. */
const char * const outofmem =
"Out of memory.\n";
const char * const impossibility =
"Impossibility #%d has occurred. Please report it.\n";
|