Not string.h but strings.h!

This commit is contained in:
Willem Toorop 2019-12-20 11:23:45 +00:00
parent 4fdf3a8b2a
commit 24824bb413
2 changed files with 2 additions and 1 deletions

View File

@ -220,6 +220,7 @@ check_include_file(stdint.h HAVE_STDINT_H)
check_include_file(stdio.h HAVE_STDIO_H)
check_include_file(stdlib.h HAVE_STDLIB_H)
check_include_file(string.h HAVE_STRING_H)
check_include_file(strings.h HAVE_STRINGS_H)
check_include_file(time.h HAVE_TIME_H)
check_include_file(unistd.h HAVE_UNISTD_H)

View File

@ -14,7 +14,7 @@
#include <limits.h>
#include <stdlib.h>
#ifdef HAVE_STRING_H
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif