added stack_free

This commit is contained in:
madmaurice 2015-11-06 14:14:49 +01:00
parent 90308911bf
commit 21429ea473
1 changed files with 3 additions and 0 deletions

View File

@ -66,5 +66,8 @@ int main( int argc, char *argv[] ) {
printf("%d\n",stack_pop(s));
}
stack_free(s);
s = NULL;
return 0;
}