From stdcxx-commits-return-440-apmail-incubator-stdcxx-commits-archive=incubator.apache.org@incubator.apache.org Wed Feb 08 02:22:01 2006 Return-Path: Delivered-To: apmail-incubator-stdcxx-commits-archive@www.apache.org Received: (qmail 65728 invoked from network); 8 Feb 2006 02:22:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 8 Feb 2006 02:22:01 -0000 Received: (qmail 61654 invoked by uid 500); 8 Feb 2006 02:22:01 -0000 Delivered-To: apmail-incubator-stdcxx-commits-archive@incubator.apache.org Received: (qmail 61637 invoked by uid 500); 8 Feb 2006 02:22:00 -0000 Mailing-List: contact stdcxx-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-commits@incubator.apache.org Received: (qmail 61604 invoked by uid 500); 8 Feb 2006 02:22:00 -0000 Delivered-To: apmail-incubator-stdcxx-cvs@incubator.apache.org Received: (qmail 61597 invoked by uid 99); 8 Feb 2006 02:22:00 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Feb 2006 18:22:00 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 07 Feb 2006 18:21:59 -0800 Received: (qmail 65596 invoked by uid 65534); 8 Feb 2006 02:21:39 -0000 Message-ID: <20060208022139.65593.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r375828 - in /incubator/stdcxx/trunk/util: aliases.cpp ctype.cpp def.cpp time.cpp Date: Wed, 08 Feb 2006 02:21:38 -0000 To: stdcxx-cvs@incubator.apache.org From: sebor@apache.org X-Mailer: svnmailer-1.0.6 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: sebor Date: Tue Feb 7 18:21:36 2006 New Revision: 375828 URL: http://svn.apache.org/viewcvs?rev=375828&view=rev Log: 2006-02-07 Martin Sebor STDCXX-132 * def.cpp (): Added a missing #include directive. * time.cpp: Same. * aliases.cpp: Same. * ctype.cpp: Same. Modified: incubator/stdcxx/trunk/util/aliases.cpp incubator/stdcxx/trunk/util/ctype.cpp incubator/stdcxx/trunk/util/def.cpp incubator/stdcxx/trunk/util/time.cpp Modified: incubator/stdcxx/trunk/util/aliases.cpp URL: http://svn.apache.org/viewcvs/incubator/stdcxx/trunk/util/aliases.cpp?rev=375828&r1=375827&r2=375828&view=diff ============================================================================== --- incubator/stdcxx/trunk/util/aliases.cpp (original) +++ incubator/stdcxx/trunk/util/aliases.cpp Tue Feb 7 18:21:36 2006 @@ -2,7 +2,7 @@ * * aliases.cpp * - * $Id: //stdlib/dev/source/stdlib/util/aliases.cpp#20 $ + * $Id$ * *************************************************************************** * @@ -27,9 +27,10 @@ #include -#include // for assert +#include // for assert() #include #include +#include // for memcpy(), strlen() #include #include #include Modified: incubator/stdcxx/trunk/util/ctype.cpp URL: http://svn.apache.org/viewcvs/incubator/stdcxx/trunk/util/ctype.cpp?rev=375828&r1=375827&r2=375828&view=diff ============================================================================== --- incubator/stdcxx/trunk/util/ctype.cpp (original) +++ incubator/stdcxx/trunk/util/ctype.cpp Tue Feb 7 18:21:36 2006 @@ -2,7 +2,7 @@ * * ctype.cpp * - * $Id: //stdlib/dev/source/stdlib/util/ctype.cpp#4 $ + * $Id$ * *************************************************************************** * @@ -29,6 +29,7 @@ #include // for toupper() #include // for sprintf() #include // for strtol() +#include // for memset(), strchr() #include // for ofstream #include // for ctype_base::mask Modified: incubator/stdcxx/trunk/util/def.cpp URL: http://svn.apache.org/viewcvs/incubator/stdcxx/trunk/util/def.cpp?rev=375828&r1=375827&r2=375828&view=diff ============================================================================== --- incubator/stdcxx/trunk/util/def.cpp (original) +++ incubator/stdcxx/trunk/util/def.cpp Tue Feb 7 18:21:36 2006 @@ -2,7 +2,7 @@ * * def.cpp * - * $Id: //stdlib/dev/source/stdlib/util/def.cpp#2 $ + * $Id$ * *************************************************************************** * @@ -46,6 +46,7 @@ #include #include #include +#include // for memset() #include "aliases.h" #include "def.h" Modified: incubator/stdcxx/trunk/util/time.cpp URL: http://svn.apache.org/viewcvs/incubator/stdcxx/trunk/util/time.cpp?rev=375828&r1=375827&r2=375828&view=diff ============================================================================== --- incubator/stdcxx/trunk/util/time.cpp (original) +++ incubator/stdcxx/trunk/util/time.cpp Tue Feb 7 18:21:36 2006 @@ -2,7 +2,7 @@ * * time.cpp * - * $Id: //stdlib/dev/source/stdlib/util/time.cpp#4 $ + * $Id$ * *************************************************************************** * @@ -26,6 +26,7 @@ #include // for assert() #include // for fscanf() +#include // for strcmp(), strtok() #include // for ofstream