From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id A50733858D33; Wed, 22 Feb 2023 11:21:09 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org A50733858D33 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1677064869; bh=WLboPFcTgVtWUvodAWO31WpEhGpkTCaC57Qz3AI3NqY=; h=From:To:Subject:Date:From; b=uc0FQYeXA9L/LCzocxmKRwEaPnZcxAev0MEK+EbbtjKutNHqJ4H+4TjA5qkam0k9X UkxDQpirc3PIbxJcn7P1rTNiqwZUC3ZS0kfnVVRA2W38To2cAnU82EsHS26v1hOyKq hrJScPz7/43h50E+8SmzenHCCD4pCL99aHYLTArs= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Corinna Vinschen To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin/main] Cygwin: glob: fix includes X-Act-Checkin: newlib-cygwin X-Git-Author: Corinna Vinschen X-Git-Refname: refs/heads/main X-Git-Oldrev: 4ab778df242efdc364b9a42b225c071e0ecc3cb7 X-Git-Newrev: 4349a1e4db294808b11a1bb50594c5ea1072d000 Message-Id: <20230222112109.A50733858D33@sourceware.org> Date: Wed, 22 Feb 2023 11:21:09 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3D4349a1e4db2= 94808b11a1bb50594c5ea1072d000 commit 4349a1e4db294808b11a1bb50594c5ea1072d000 Author: Corinna Vinschen AuthorDate: Wed Feb 22 10:00:10 2023 +0100 Commit: Corinna Vinschen CommitDate: Wed Feb 22 10:00:10 2023 +0100 Cygwin: glob: fix includes =20 Signed-off-by: Corinna Vinschen Diff: --- 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 66681786aae8..8bcdd61b2032 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 =20 #include "collate.h" =20 #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