aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@codesourcery.com>2014-06-10 11:45:00 +0200
committerThomas Schwinge <tschwinge@gcc.gnu.org>2014-06-10 11:45:00 +0200
commit35fa894ae37dc5efdaf05db965e65a0621f5beee (patch)
tree47693e80839cdf20848a33e1f839ec66894b68fc /include
parent1685ecf3bf96cba4840ea4ef7b0f87b4f92b4898 (diff)
downloadgcc-35fa894ae37dc5efdaf05db965e65a0621f5beee.zip
gcc-35fa894ae37dc5efdaf05db965e65a0621f5beee.tar.gz
gcc-35fa894ae37dc5efdaf05db965e65a0621f5beee.tar.bz2
[PR lto/61334] Declare prototype for strnlen, if needed.
include/ * libiberty.h [defined (HAVE_DECL_STRNLEN) && !HAVE_DECL_STRNLEN] (strnlen): New prototype. gcc/ * configure.ac: Use gcc_AC_CHECK_DECLS to check for strnlen prototype. * config.in: Regenerate. * configure: Likewise. From-SVN: r211401
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog6
-rw-r--r--include/libiberty.h4
2 files changed, 10 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index ff33d29..1cda0dc 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,9 @@
+2014-06-10 Thomas Schwinge <thomas@codesourcery.com>
+
+ PR lto/61334
+ * libiberty.h [defined (HAVE_DECL_STRNLEN) &&
+ !HAVE_DECL_STRNLEN] (strnlen): New prototype.
+
2014-05-21 John Marino <gnugcc@marino.st>
* liberty.h: Use basename function on DragonFly.
diff --git a/include/libiberty.h b/include/libiberty.h
index 7fd0703..56b8b43 100644
--- a/include/libiberty.h
+++ b/include/libiberty.h
@@ -636,6 +636,10 @@ extern int snprintf (char *, size_t, const char *, ...) ATTRIBUTE_PRINTF_3;
extern int vsnprintf (char *, size_t, const char *, va_list) ATTRIBUTE_PRINTF(3,0);
#endif
+#if defined (HAVE_DECL_STRNLEN) && !HAVE_DECL_STRNLEN
+extern size_t strnlen (const char *, size_t);
+#endif
+
#if defined(HAVE_DECL_STRVERSCMP) && !HAVE_DECL_STRVERSCMP
/* Compare version strings. */
extern int strverscmp (const char *, const char *);