blob: 532acaef787b9bf6c04cda644552c69da9e3a2e9 [file] [log] [blame]
#include <stdlib.h>
float strtof_l(const char *restrict s, char **restrict p,
struct __locale_struct *l) {
return strtof(s, p);
}
double strtod_l(const char *restrict s, char **restrict p,
struct __locale_struct *l) {
return strtod(s, p);
}
long double strtold_l(const char *restrict s, char **restrict p,
struct __locale_struct *l) {
return strtold(s, p);
}