diff options
author | Jakob Kaivo <jkk@ung.org> | 2019-02-10 13:05:16 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2019-02-10 13:05:16 -0500 |
commit | a8c339434e40d187c7ec1354982e741d7bc5d40b (patch) | |
tree | b010764ad3af9f4b37d8d142146afe2aee99a090 | |
parent | 3fe929ecd22b5ca3f5dc35c0c8be523fa7fc1de7 (diff) |
add temporary value so compilation finishes
-rw-r--r-- | src/math/HUGE_VALF.c | 2 | ||||
-rw-r--r-- | src/math/HUGE_VALL.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/math/HUGE_VALF.c b/src/math/HUGE_VALF.c index 41ea0f3e..78b612cd 100644 --- a/src/math/HUGE_VALF.c +++ b/src/math/HUGE_VALF.c @@ -1,5 +1,5 @@ #include <math.h> -#define HUGE_VALF /* TODO: massive positive float */ +#define HUGE_VALF 0.0 /* TODO: massive positive float */ /* STDC(199901) diff --git a/src/math/HUGE_VALL.c b/src/math/HUGE_VALL.c index 7745a373..f82c9b5a 100644 --- a/src/math/HUGE_VALL.c +++ b/src/math/HUGE_VALL.c @@ -1,5 +1,5 @@ #include <math.h> -#define HUGE_VALL /* TODO: massive positive long double */ +#define HUGE_VALL 0.0 /* TODO: massive positive long double */ /* STDC(199901) |