diff options
| author | Nick Brassel | 2025-04-09 16:28:30 +0200 |
|---|---|---|
| committer | GitHub | 2025-04-09 16:28:30 +0200 |
| commit | a0f40d9410d1ecac4b498b999ebd04e65ef762f4 (patch) | |
| tree | a9d06c7ccc67a22b6d17396b3d1503ec97c5e413 /keyboards/rubi | |
| parent | 575abc48a3064a464caaa6febf0c65215c3eb1d0 (diff) | |
Include `math.h` where necessary. (#25122)
Diffstat (limited to 'keyboards/rubi')
| -rw-r--r-- | keyboards/rubi/lib/calc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/keyboards/rubi/lib/calc.c b/keyboards/rubi/lib/calc.c index 7796a9be45..b289fdb54b 100644 --- a/keyboards/rubi/lib/calc.c +++ b/keyboards/rubi/lib/calc.c @@ -13,6 +13,7 @@ This is the modified version of [calculator by MWWorks](https://github.com/MWWor Feel free to fix it! I think it needs to detect the precision of the two operands and then figure out what the precision of the result should be */ +#include <math.h> #include "rubi.h" static uint8_t calc_current_operand = 0; |