err() --> errx() for non-errno related failures.

This commit is contained in:
joerg 1996-03-11 11:01:03 +00:00
parent f6d24e98ef
commit e2c4135de9

View File

@ -33,7 +33,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: test.c,v 1.11 1995/05/30 00:07:29 rgrimes Exp $
* $Id: test.c,v 1.12 1995/10/28 11:54:42 ache Exp $
*/
#ifndef lint
@ -578,12 +578,12 @@ static void
syntax()
{
err(2, "syntax error");
errx(2, "syntax error");
}
static void
overflow()
{
err(2, "expression is too complex");
errx(2, "expression is too complex");
}