Fixed push().

This commit is contained in:
Murilo Soares Pereira
2010-04-04 21:20:38 -03:00
parent 84383a3275
commit ad737aa765
2 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ struct stack {
struct stack *initialize_stack();
bool empty(struct stack *);
int length(struct stack *);
void push(struct stack *, struct card *);
void push(struct stack **, struct card *);
struct stack *pop(struct stack *);
#endif