bpo-38519: Internal include files missing on Windows (GH-16921)

(cherry picked from commit edb172a87296d9359593a23cd9a09f5867ea1f0e)

Co-authored-by: Zackery Spytz <zspytz@gmail.com>
diff --git a/PC/layout/main.py b/PC/layout/main.py
index e598581..3ca49d0 100644
--- a/PC/layout/main.py
+++ b/PC/layout/main.py
@@ -216,12 +216,7 @@
 
     if ns.include_dev:
 
-        def _c(d):
-            if d.is_dir():
-                return d.name != "internal"
-            return True
-
-        for dest, src in rglob(ns.source / "Include", "**/*.h", _c):
+        for dest, src in rglob(ns.source / "Include", "**/*.h"):
             yield "include/{}".format(dest), src
         src = ns.source / "PC" / "pyconfig.h"
         yield "include/pyconfig.h", src