diff options
author | Andreas Kling <kling@serenityos.org> | 2020-08-04 19:06:27 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-04 19:06:27 +0200 |
commit | dc12cbca41b8b667ae7ced1066647d47186d1557 (patch) | |
tree | 47eb2183fd7cb3553b5f680b848cd080b82dc73c /Libraries/LibGfx/JPGLoader.cpp | |
parent | 45b05e9734962b07f95630e76b9a680e1775f002 (diff) | |
download | serenity-dc12cbca41b8b667ae7ced1066647d47186d1557.zip |
LibM: Always include <math.h> instead of <LibM/math.h>
This makes Lagom pick up the host math.h, which is what we want.
Diffstat (limited to 'Libraries/LibGfx/JPGLoader.cpp')
-rw-r--r-- | Libraries/LibGfx/JPGLoader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibGfx/JPGLoader.cpp b/Libraries/LibGfx/JPGLoader.cpp index 57772534d2..c7b40c8d2b 100644 --- a/Libraries/LibGfx/JPGLoader.cpp +++ b/Libraries/LibGfx/JPGLoader.cpp @@ -33,7 +33,7 @@ #include <AK/Vector.h> #include <LibGfx/Bitmap.h> #include <LibGfx/JPGLoader.h> -#include <Libraries/LibM/math.h> +#include <math.h> #define JPG_DBG 0 #define jpg_dbg(x) \ |