diff options
Diffstat (limited to 'src/stdlib/strtof.c')
-rw-r--r-- | src/stdlib/strtof.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/stdlib/strtof.c b/src/stdlib/strtof.c new file mode 100644 index 00000000..b3da169c --- /dev/null +++ b/src/stdlib/strtof.c @@ -0,0 +1,9 @@ +#include <stdlib.h> + +float strtof(const char * restrict nptr, char ** restrict endptr) +{ +} + +/* +STDC(199901) +*/ |