index
:
sbos.git
master
Unnamed repository; edit this file 'description' to name the repository.
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
userland
/
libc
/
stdlib
/
atof.c
blob: f0088521624df4577def08d61de4a1c3bec263e3 (
plain
)
1
2
3
4
5
#include <stdlib.h> double atof(const char *str) { return strtod(str, (char **)NULL); }