zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

blob f7fcd826 (74B) - Raw


      1 #include <stdlib.h>
      2 
      3 double atof(const char *s)
      4 {
      5 	return strtod(s, 0);
      6 }