diff options
Diffstat (limited to 'stdlib')
-rw-r--r-- | stdlib/atoi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/stdlib/atoi.c b/stdlib/atoi.c index a6c3f1d547..c42858494f 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) |