OSDN Git Service

original
[gb-231r1-is01/GB_2.3_IS01.git] / system / core / libacc / tests / data / double.c
diff --git a/system/core/libacc/tests/data/double.c b/system/core/libacc/tests/data/double.c
new file mode 100644 (file)
index 0000000..5bc20a3
--- /dev/null
@@ -0,0 +1,7 @@
+double atof(char *nptr);
+
+int main() {
+    printf("Value = %g\n", atof("10.42"));
+    return 0;
+}
+