1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2025-05-08 16:25:23 +01:00

Include strings.h in win/curses/cursdial.c

This fixes compilation errors with clang -std=c2x due to strcasecmp
and strncasecmp being undeclared.
This commit is contained in:
Ron Nazarov 2024-05-05 01:52:49 +01:00
parent f77f030c07
commit 4cf83ffd82
Signed by: noisytoot
GPG key ID: 1D43EF4F4492268B

View file

@ -7,6 +7,7 @@
#include "curswins.h"
#include "func_tab.h"
#include <ctype.h>
#include <strings.h>
/* Dialog windows for curses interface */