summaryrefslogtreecommitdiffstats
path: root/4/11.c
diff options
context:
space:
mode:
Diffstat (limited to '4/11.c')
-rw-r--r--4/11.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/4/11.c b/4/11.c
index 1e30740..e33ac52 100644
--- a/4/11.c
+++ b/4/11.c
@@ -17,11 +17,11 @@
char var[52];
double lout = 0.0;
-int getop(char[]);
-void push(double);
+void clear();
double pop();
double peek();
-void clear();
+int getop(char[]);
+void push(double);
/* Stack based reverse Polish notation calculator without ungetch()
- single uppercase and lowercase characters are variables (syntax 2 A =);