diff --git a/du3/program.c b/du3/program.c index a2e0768..5a15666 100644 --- a/du3/program.c +++ b/du3/program.c @@ -68,17 +68,12 @@ float pop_stack(struct stack* mystack,const char input[]) } } -int count_stack(struct stack* stack) -{ - -} - void print_stack(struct stack* mystack) { for(int i=0;isize;i++) { printf("%.2f",mystack->values[i]); - if (isize-1) + if (isize) { printf(" "); }