Fixed malloc() and pop().

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