From 4349a1e4db294808b11a1bb50594c5ea1072d000 Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Wed, 22 Feb 2023 10:00:10 +0100 Subject: [PATCH] Cygwin: glob: fix includes Signed-off-by: Corinna Vinschen --- winsup/cygwin/glob.cc | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/winsup/cygwin/glob.cc b/winsup/cygwin/glob.cc index 66681786a..8bcdd61b2 100644 --- a/winsup/cygwin/glob.cc +++ b/winsup/cygwin/glob.cc @@ -90,17 +90,11 @@ __FBSDID("$FreeBSD: src/lib/libc/gen/glob.c,v 1.28 2010/05/12 17:44:00 gordon Ex #include #include #include +#include #include "collate.h" #ifdef __CYGWIN__ -#include -#include "path.h" -#include "fhandler.h" -#include "dtable.h" -#include "cygheap.h" -#include "cygwin/version.h" - #define CCHAR(c) (ignore_case_with_glob ? towlower (CHAR (c)) : CHAR (c)) #define Cchar(c) (ignore_case_with_glob ? towlower (c) : (c)) #endif