summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/bc/bc.y
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1995-11-15 13:13:43 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1995-11-15 13:13:43 +0000
commite3e60231443e77c8a5a48da4d81f73507352062e (patch)
tree478ac3691c85eba32a47bb389c9d1dfbf0445fa2 /gnu/usr.bin/bc/bc.y
parente38a749ce6e6c7079d9387f6f58ef11121b63907 (diff)
it is very annoying to print a version without -v being specified
Diffstat (limited to 'gnu/usr.bin/bc/bc.y')
-rw-r--r--gnu/usr.bin/bc/bc.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/bc/bc.y b/gnu/usr.bin/bc/bc.y
index f5ba1617bf0..27fd7b14de0 100644
--- a/gnu/usr.bin/bc/bc.y
+++ b/gnu/usr.bin/bc/bc.y
@@ -107,11 +107,11 @@
program : /* empty */
{
$$ = 0;
- if (interactive)
+ /*if (interactive)
{
printf ("%s\n", BC_VERSION);
welcome ();
- }
+ }*/
}
| program input_item
;