From 9aef11022ab2dfc3743d187862bd287d76f9628a Mon Sep 17 00:00:00 2001 From: Bruno Lopes Date: Fri, 3 Apr 2026 08:33:04 -0300 Subject: [PATCH] plug-ins: Use _fileno on Windows --- plug-ins/file-webp/file-webp-export.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/plug-ins/file-webp/file-webp-export.c b/plug-ins/file-webp/file-webp-export.c index 917fbe61c8..e3d0afca2d 100644 --- a/plug-ins/file-webp/file-webp-export.c +++ b/plug-ins/file-webp/file-webp-export.c @@ -28,6 +28,10 @@ #include #include #include +#ifdef _WIN32 +#include +#define fileno _fileno +#endif #include