Closed techhazard closed 8 years ago
The following functions are used in nextwall.c:
nextwall.c
strcpy
strcmp
strerr
strcat
These all gave an error because the were not explicitly declared.
This pull request adds the explicit declarations for string functions by including string.h.
string.h
Thanks! It surprises me that gcc doesn't warn for this on Linux.
The following functions are used in
nextwall.c
:strcpy
strcmp
strerr
strcat
These all gave an error because the were not explicitly declared.
This pull request adds the explicit declarations for string functions by including
string.h
.