diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2022-02-14 06:55:09 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2022-02-14 06:55:37 +0100 |
commit | 03d1798e237f2c68d2281627ddbcdfe953c17d80 (patch) | |
tree | 228bafec68c0c883759b86e07aa3b67116863026 | |
parent | ef2544868daf241ccfe098cf2ee6845204080ffb (diff) | |
download | fiv-03d1798e237f2c68d2281627ddbcdfe953c17d80.tar.gz fiv-03d1798e237f2c68d2281627ddbcdfe953c17d80.tar.xz fiv-03d1798e237f2c68d2281627ddbcdfe953c17d80.zip |
Add a missing header file include
-rw-r--r-- | fiv-io.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -17,10 +17,11 @@ #include "config.h" -#include <cairo.h> #include <errno.h> -#include <glib.h> +#include <math.h> +#include <cairo.h> +#include <glib.h> #include <turbojpeg.h> #include <webp/decode.h> #include <webp/demux.h> |