info: Add #include <strings.h> for portability

We get strncasecmp() from <string.h>.  This is a BSDism; POSIX
provides it in <strings.h>.  Missed in commit 8fdd0259f2, v4.2.19.

Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
Markus Armbruster 2020-12-27 07:30:41 +01:00
parent 168db3b248
commit 566b9fdbbe

View file

@ -41,6 +41,7 @@
#include <sys/stat.h>
#include <stdio.h>
#if !defined(_WIN32)
#include <strings.h>
#include <dirent.h>
#endif
#include "commands.h"