aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--include/stdlib.h2
-rw-r--r--stdlib/atoi.c1
3 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index db0b451..f7e7204 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2018-02-26 Joseph Myers <joseph@codesourcery.com>
+
+ [BZ #15105]
+ * stdlib/atoi.c (atoi): Use libc_hidden_def.
+ * include/stdlib.h [!_ISOMAC] (atoi): Use libc_hidden_proto.
+
2018-02-26 Dmitry V. Levin <ldv@altlinux.org>
[BZ #22433]
diff --git a/include/stdlib.h b/include/stdlib.h
index 5974fb3..114e12d 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -210,6 +210,8 @@ libc_hidden_proto (strtoll)
libc_hidden_proto (strtoul)
libc_hidden_proto (strtoull)
+libc_hidden_proto (atoi)
+
extern float __strtof_nan (const char *, char **, char);
extern double __strtod_nan (const char *, char **, char);
extern long double __strtold_nan (const char *, char **, char);
diff --git a/stdlib/atoi.c b/stdlib/atoi.c
index a6c3f1d..c428584 100644
--- a/stdlib/atoi.c
+++ b/stdlib/atoi.c
@@ -26,3 +26,4 @@ atoi (const char *nptr)
{
return (int) strtol (nptr, (char **) NULL, 10);
}
+libc_hidden_def (atoi)