1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2026-01-19 13:21:00 +00:00
serenity/Libraries/LibM
Linus Groh c7b4b5fe00 LibM: Fix ceil() and ceilf() for negative numbers
These functions are using a naive approach: casting double/float to int
and returning the result + 1. That increment by one must only happen for
positive input values though.
2020-04-06 15:43:47 +02:00
..
Makefile LibM: Install immediately after building 2020-02-06 14:28:35 +01:00
math.cpp LibM: Fix ceil() and ceilf() for negative numbers 2020-04-06 15:43:47 +02:00
math.h LibM: Implement floating point variants of various math functions 2020-02-25 20:48:42 +01:00
TestMath.cpp Meta: Add license header to source files 2020-01-18 09:45:54 +01:00