summaryrefslogtreecommitdiff
path: root/float/fl.c
diff options
context:
space:
mode:
Diffstat (limited to 'float/fl.c')
-rw-r--r--float/fl.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/float/fl.c b/float/fl.c
new file mode 100644
index 0000000..4221aa4
--- /dev/null
+++ b/float/fl.c
@@ -0,0 +1,14 @@
+float fl(int j)
+{
+ return j * 4 / 3;
+}
+
+double dbl(int j)
+{
+ return j * 4 / 3;
+}
+
+long double ldbl(int j)
+{
+ return j * 4 / 3;
+}