diff options
Diffstat (limited to 'src/floatfns.c')
| -rw-r--r-- | src/floatfns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/floatfns.c b/src/floatfns.c index cad071f1e15..706fe7ae1a0 100644 --- a/src/floatfns.c +++ b/src/floatfns.c | |||
| @@ -103,10 +103,10 @@ extern double logb (double); | |||
| 103 | static void float_error (); | 103 | static void float_error (); |
| 104 | #endif | 104 | #endif |
| 105 | 105 | ||
| 106 | /* Nonzero while executing in floating point. | 106 | /* True while executing in floating point. |
| 107 | This tells float_error what to do. */ | 107 | This tells float_error what to do. */ |
| 108 | 108 | ||
| 109 | static int in_float; | 109 | static bool in_float; |
| 110 | 110 | ||
| 111 | /* If an argument is out of range for a mathematical function, | 111 | /* If an argument is out of range for a mathematical function, |
| 112 | here is the actual argument value to use in the error message. | 112 | here is the actual argument value to use in the error message. |