Language
C
Compiler
gcc 10.1.0
Options
Warnings
C11(GNU)
no pedantic
$ gcc prog.c -Wall -Wextra -std=gnu11
Exit Code:
0
Author
anonymous
over 4 years ago
C
gcc 10.1.0
Author
anonymous
over 4 years ago
$ gcc prog.c -Wall -Wextra -std=gnu11
prog.c: In function 'allocateNode':
prog.c:8:29: warning: unused parameter 'e' [-Wunused-parameter]
8 | NodeT* allocateNode(Element e) {
| ~~~~~~~~^
prog.c: In function 'insert':
prog.c:29:1: warning: control reaches end of non-void function [-Wreturn-type]
29 | }
| ^