From 5869a611335db32adf97627d8579f5de7a0890aa Mon Sep 17 00:00:00 2001 From: Mark Linton Date: Thu, 21 Jan 1982 01:01:30 -0800 Subject: [PATCH] "quit" calls quit rather than exit SCCS-vsn: usr.bin/pascal/pdx/command/grammar.y 1.2 --- usr/src/usr.bin/pascal/pdx/command/grammar.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/src/usr.bin/pascal/pdx/command/grammar.y b/usr/src/usr.bin/pascal/pdx/command/grammar.y index 793c998df3..d42cd338b2 100644 --- a/usr/src/usr.bin/pascal/pdx/command/grammar.y +++ b/usr/src/usr.bin/pascal/pdx/command/grammar.y @@ -1,7 +1,7 @@ %{ /* Copyright (c) 1982 Regents of the University of California */ -static char sccsid[] = "@(#)grammar.y 1.1 %G%"; +static char sccsid[] = "@(#)grammar.y 1.2 %G%"; /* * yacc grammar for debugger commands @@ -157,7 +157,7 @@ command: } | QUIT { - exit(0); + quit(0); } | STEP { -- 2.20.1