summaryrefslogtreecommitdiffstats
path: root/4/6.c
diff options
context:
space:
mode:
authorSadeep Madurange <smadurange@users.noreply.github.com>2021-12-11 17:47:39 +0800
committerSadeep Madurange <smadurange@users.noreply.github.com>2021-12-11 17:47:39 +0800
commit363745153156d4d0b8e9981319d98221d763af7f (patch)
tree3fb214f54eedce17101fef1918afe22e44400107 /4/6.c
parent1bceeb8027f4d9dd30c07221a0c1f05f10e4f5d0 (diff)
downloadk&r-exercises-363745153156d4d0b8e9981319d98221d763af7f.tar.gz
4.6
Diffstat (limited to '4/6.c')
-rw-r--r--4/6.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/4/6.c b/4/6.c
index 9a9bc18..ab4fb1a 100644
--- a/4/6.c
+++ b/4/6.c
@@ -11,9 +11,7 @@
#define VARIABLE '3' /* signal that a variable was found */
#define MAXVAL 100 /* max depth of val and var stack */
#define BUFSIZE 100
-#define VARCOUNT \
- 26 /* supported variable count. Upper case letters reserved \
- */
+#define VARCOUNT 26 /* supported variable count */
int sp = 0; /* next free stack position */
double val[MAXVAL]; /* value stack */