From owner-svn-src-projects@freebsd.org Wed Oct 14 12:46:07 2015 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2CEFAA11ACA for ; Wed, 14 Oct 2015 12:46:07 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EB056D1A; Wed, 14 Oct 2015 12:46:06 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9ECk5uk049504; Wed, 14 Oct 2015 12:46:05 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9ECk5eR049503; Wed, 14 Oct 2015 12:46:05 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201510141246.t9ECk5eR049503@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Wed, 14 Oct 2015 12:46:05 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r289314 - projects/collation/lib/libc/locale X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Oct 2015 12:46:07 -0000 Author: bapt Date: Wed Oct 14 12:46:05 2015 New Revision: 289314 URL: https://svnweb.freebsd.org/changeset/base/289314 Log: Include sys/*.h earlier Reported by: kib Modified: projects/collation/lib/libc/locale/collate.c Modified: projects/collation/lib/libc/locale/collate.c ============================================================================== --- projects/collation/lib/libc/locale/collate.c Wed Oct 14 11:52:58 2015 (r289313) +++ projects/collation/lib/libc/locale/collate.c Wed Oct 14 12:46:05 2015 (r289314) @@ -38,6 +38,11 @@ __FBSDID("$FreeBSD$"); #include "namespace.h" + +#include +#include +#include + #include #include #include @@ -45,9 +50,6 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include -#include -#include #include "un-namespace.h" #include "collate.h"