diff options
author | Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> | 2016-12-21 09:49:40 +0000 |
---|---|---|
committer | François-Xavier Coudert <fxcoudert@gcc.gnu.org> | 2016-12-21 09:49:40 +0000 |
commit | 71d9113f9b0dd357236dcaadda0ddd9faf1607be (patch) | |
tree | 5588f37e2f31e6906457df6b843e50d7ecad0cab /libgfortran/intrinsics | |
parent | b528e42751b731746d98427fb6d9ec8634a72555 (diff) | |
download | gcc-71d9113f9b0dd357236dcaadda0ddd9faf1607be.zip gcc-71d9113f9b0dd357236dcaadda0ddd9faf1607be.tar.gz gcc-71d9113f9b0dd357236dcaadda0ddd9faf1607be.tar.bz2 |
re PR libfortran/70311 (libgfortran build dies on "implicit declaration of function strncasecmp")
PR libfortran/70311
* intrinsics/selected_char_kind.c: Include <strings.h> header.
* runtime/environ.c: Include <strings.h> header.
* runtime/string.c: Include <strings.h> header.
From-SVN: r243843
Diffstat (limited to 'libgfortran/intrinsics')
-rw-r--r-- | libgfortran/intrinsics/selected_char_kind.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgfortran/intrinsics/selected_char_kind.c b/libgfortran/intrinsics/selected_char_kind.c index bbb95a9..8e400a4 100644 --- a/libgfortran/intrinsics/selected_char_kind.c +++ b/libgfortran/intrinsics/selected_char_kind.c @@ -25,7 +25,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #include "libgfortran.h" -#include <string.h> +#include <strings.h> extern GFC_INTEGER_4 selected_char_kind (gfc_charlen_type, char *); |