From owner-svn-src-user@FreeBSD.ORG Fri Oct 22 14:01:12 2010 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3BA961065672; Fri, 22 Oct 2010 14:01:12 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2B0CD8FC17; Fri, 22 Oct 2010 14:01:12 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o9ME1CCB052247; Fri, 22 Oct 2010 14:01:12 GMT (envelope-from ed@svn.freebsd.org) Received: (from ed@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o9ME1C4l052245; Fri, 22 Oct 2010 14:01:12 GMT (envelope-from ed@svn.freebsd.org) Message-Id: <201010221401.o9ME1C4l052245@svn.freebsd.org> From: Ed Schouten Date: Fri, 22 Oct 2010 14:01:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r214204 - user/ed/compiler-rt/contrib/compiler-rt/lib X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Oct 2010 14:01:12 -0000 Author: ed Date: Fri Oct 22 14:01:11 2010 New Revision: 214204 URL: http://svn.freebsd.org/changeset/base/214204 Log: Add missing #include to clear_cache.c, to make it build on non-Darwin. Modified: user/ed/compiler-rt/contrib/compiler-rt/lib/clear_cache.c Modified: user/ed/compiler-rt/contrib/compiler-rt/lib/clear_cache.c ============================================================================== --- user/ed/compiler-rt/contrib/compiler-rt/lib/clear_cache.c Fri Oct 22 11:42:02 2010 (r214203) +++ user/ed/compiler-rt/contrib/compiler-rt/lib/clear_cache.c Fri Oct 22 14:01:11 2010 (r214204) @@ -8,6 +8,7 @@ * ===----------------------------------------------------------------------=== */ +#include "int_lib.h" #include #if __APPLE__