diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2023-07-07 12:00:54 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2023-07-07 12:01:12 +0200 |
commit | ab75d2b61d58bcfc9c8c22d53b0b4cf2658b17c3 (patch) | |
tree | a7946318e2d6962d3f3f743a64a2a57cab151a77 /fiv-jpegcrop.c | |
parent | 92deba3890bbc74258e3f3bf8f9fe4b8a02fbb8d (diff) | |
download | fiv-ab75d2b61d58bcfc9c8c22d53b0b4cf2658b17c3.tar.gz fiv-ab75d2b61d58bcfc9c8c22d53b0b4cf2658b17c3.tar.xz fiv-ab75d2b61d58bcfc9c8c22d53b0b4cf2658b17c3.zip |
Fix build under Cygwin
Diffstat (limited to 'fiv-jpegcrop.c')
-rw-r--r-- | fiv-jpegcrop.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fiv-jpegcrop.c b/fiv-jpegcrop.c index f19ff74..d8bdb9c 100644 --- a/fiv-jpegcrop.c +++ b/fiv-jpegcrop.c @@ -18,6 +18,9 @@ #include <gtk/gtk.h> #include <turbojpeg.h> +#include <stdlib.h> +#include <string.h> + #include "config.h" // --- Utilities --------------------------------------------------------------- |