Skip to content
Snippets Groups Projects
Commit 0b62206a authored by orestis.malaspin's avatar orestis.malaspin
Browse files

Merge branch 'radhwan.hassine-master-patch-17356' into 'master'

Update cours_11.md

See merge request algorithmique/cours!55
parents 3229d576 441a3e63
Branches
No related tags found
No related merge requests found
...@@ -221,7 +221,6 @@ void stack_pop(stack *s, int *val) { ...@@ -221,7 +221,6 @@ void stack_pop(stack *s, int *val) {
element *tmp = *s; element *tmp = *s;
*s = (*s)->next; *s = (*s)->next;
free(tmp); free(tmp);
return val;
} }
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment