plug-ins: Use _fileno on Windows

This commit is contained in:
Bruno Lopes 2026-04-03 08:33:04 -03:00
parent f788cdac9d
commit 9aef11022a

View file

@ -28,6 +28,10 @@
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#ifdef _WIN32
#include <io.h>
#define fileno _fileno
#endif
#include <gegl.h>