summaryrefslogtreecommitdiff
path: root/libc/include/stdlib.h
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2017-09-18 21:33:06 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-09-18 21:33:06 +0000
commitdf862454b69f81b5574da415b61d9cbf12662bcc (patch)
tree98b7361c8e6a711fcb529a0df6a46e7c590f9d57 /libc/include/stdlib.h
parent5e805526422d90c4054c9fb0f7b1b915dc49f3c8 (diff)
parent50cda38f1ddfb0216e986f60cdc877fb9c55ebba (diff)
Merge "Use __RENAME for long double functions."
Diffstat (limited to 'libc/include/stdlib.h')
-rw-r--r--libc/include/stdlib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/include/stdlib.h b/libc/include/stdlib.h
index 4182f2dff..86336a057 100644
--- a/libc/include/stdlib.h
+++ b/libc/include/stdlib.h
@@ -75,7 +75,7 @@ unsigned long long strtoull(const char* __s, char** __end_ptr, int __base);
int posix_memalign(void** __memptr, size_t __alignment, size_t __size) __INTRODUCED_IN(16);
double strtod(const char* __s, char** __end_ptr);
-long double strtold(const char* __s, char** __end_ptr) __INTRODUCED_IN(21);
+long double strtold(const char* __s, char** __end_ptr) __RENAME_LDBL(strtod, 3, 21);
unsigned long strtoul_l(const char* __s, char** __end_ptr, int __base, locale_t __l) __INTRODUCED_IN(26);