diff options
Diffstat (limited to 'src/locale/strtod_l.c')
-rw-r--r-- | src/locale/strtod_l.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/locale/strtod_l.c b/src/locale/strtod_l.c index 574ba148..61a13435 100644 --- a/src/locale/strtod_l.c +++ b/src/locale/strtod_l.c @@ -20,3 +20,11 @@ long double strtold_l(const char *restrict s, char **restrict p, locale_t l) weak_alias(strtof_l, __strtof_l); weak_alias(strtod_l, __strtod_l); weak_alias(strtold_l, __strtold_l); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |