add to pthread.h: pthread_mutex_timedlock and sched.h, time.h
[musl] / src / stdlib / strtof.c
1 #include <stdlib.h>
2
3 float strtof(const char *s, char **p)
4 {
5         return strtold(s, p);
6 }