1*22368Sdist /* 2*22368Sdist * Copyright (c) 1980 Regents of the University of California. 3*22368Sdist * All rights reserved. The Berkeley software License Agreement 4*22368Sdist * specifies the terms and conditions for redistribution. 5*22368Sdist */ 65486Slinton 7*22368Sdist #ifndef lint 8*22368Sdist static char sccsid[] = "@(#)pxerrors.c 5.1 (Berkeley) 06/06/85"; 9*22368Sdist #endif not lint 105486Slinton 115486Slinton /* 125486Slinton * px error messages 135486Slinton */ 145486Slinton 155486Slinton char *pxerrmsg[] ={ 165486Slinton "not an error!", 175486Slinton "argument to chr out of range", 185486Slinton "div (integer divide) by zero", 195486Slinton "real divide by zero", 205486Slinton "call to procedure halt", 215486Slinton "reference through a nil pointer", 225486Slinton "tried to read past end-of-file", 235486Slinton "negative parameter to sqrt", 245486Slinton "pi/px error: stack not empty", 255486Slinton "subscript out of range", 265486Slinton "reference to an inactive file", 275486Slinton "pi/px error: write failed", 285486Slinton "pi/px error: create failed", 295486Slinton "non-positive argument to ln", 305486Slinton "pi/px error: bad op", 315486Slinton "bad data on integer read", 325486Slinton "pi/px error: active frame not found in goto", 335486Slinton "label not found in case", 345486Slinton "pi/px error: seek failed", 355486Slinton "pi/px error: bad parameter to alloc", 365486Slinton "out of memory", 375486Slinton "constructed set parameter exceeds set bounds", 385486Slinton "too many digits in number", 395486Slinton "mod (integer remainder) by 0", 405486Slinton "bad data on real read", 415486Slinton "pi/px error: remove failed", 425486Slinton "pi/px error: close failed", 435486Slinton "pi/px error: open failed", 445486Slinton "parameter to argv out of range", 455486Slinton "bad i to pack(a, i, z)", 465486Slinton "bad i to unpack(z, a, i)", 475486Slinton "value out of range", 485486Slinton "assertion failed", 495486Slinton "tried to read, but open for writing", 505486Slinton "tried to write, but open for reading", 515486Slinton "integer number too large", 525486Slinton "statement limit exceeded", 535486Slinton "runtime stack overflow", 545486Slinton "interrupt", 555620Smckusic "overflow, underflow, or divide by zero in arithmetic operation", 565486Slinton }; 57