aboutsummaryrefslogtreecommitdiff
path: root/stack.h
diff options
context:
space:
mode:
Diffstat (limited to 'stack.h')
-rw-r--r--stack.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/stack.h b/stack.h
index e6c6415..7f259fe 100644
--- a/stack.h
+++ b/stack.h
@@ -8,7 +8,7 @@ struct stack
int *items;
};
-struct stack *new_stack(int capacity);
+struct stack *create_stack(int capacity);
void stack_push(struct stack *pt, int x);