From patchwork Thu Feb 16 14:50:16 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Zack Weinberg X-Patchwork-Id: 19272 Received: (qmail 101429 invoked by alias); 16 Feb 2017 14:51:21 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 101346 invoked by uid 89); 16 Feb 2017 14:51:21 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-23.3 required=5.0 tests=AWL, BAYES_05, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 spammy=H*r:sk:mailbac, H*m:panix, H*MI:panix, H*r:166.84.1 X-HELO: mailbackend.panix.com From: Zack Weinberg To: libc-alpha@sourceware.org Date: Thu, 16 Feb 2017 09:50:16 -0500 Subject: [PATCH] Move bits/types.h into posix/bits. Message-Id: <20170216145108.D173514B9D@panix1.panix.com> bits/types.h has no sysdeps variants, so it should be in the subdirectory that installs it (namely, posix). I imagine this file did once have sysdeps variants, before the advent of bits/typesizes.h. Tested on x86-64-linux, committed as obvious. zw * bits/types.h: Move to posix/bits. * include/bits/types.h: New wrapper. --- ChangeLog | 5 +++++ include/bits/types.h | 1 + {bits => posix/bits}/types.h | 0 3 files changed, 6 insertions(+) create mode 100644 include/bits/types.h rename {bits => posix/bits}/types.h (100%) diff --git a/ChangeLog b/ChangeLog index 3bc23fef90..d25710c68e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2017-02-16 Zack Weinberg + + * bits/types.h: Move to posix/bits. + * include/bits/types.h: New wrapper. + 2017-02-15 Wilco Dijkstra * string/bits/string2.h (strcmp): Remove define. diff --git a/include/bits/types.h b/include/bits/types.h new file mode 100644 index 0000000000..1c47910607 --- /dev/null +++ b/include/bits/types.h @@ -0,0 +1 @@ +#include diff --git a/bits/types.h b/posix/bits/types.h similarity index 100% rename from bits/types.h rename to posix/bits/types.h