From owner-cvs-src-old@FreeBSD.ORG Thu Feb 25 21:21:59 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A74AF106568D for ; Thu, 25 Feb 2010 21:21:59 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 935F68FC22 for ; Thu, 25 Feb 2010 21:21:59 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o1PLLxF6036685 for ; Thu, 25 Feb 2010 21:21:59 GMT (envelope-from edwin@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o1PLLxcW036684 for cvs-src-old@freebsd.org; Thu, 25 Feb 2010 21:21:59 GMT (envelope-from edwin@repoman.freebsd.org) Message-Id: <201002252121.o1PLLxcW036684@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to edwin@repoman.freebsd.org using -f From: Edwin Groothuis Date: Thu, 25 Feb 2010 21:21:34 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/tzcode/stdtime Makefile.inc Symbol.map asctime.c ctime.3 difftime.c localtime.c private.h strftime.3 strftime.c strptime.3 strptime.c time2posix.3 time32.c timelocal.c timelocal.h tzfile.5 tzfile.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Feb 2010 21:21:59 -0000 edwin 2010-02-25 21:21:34 UTC FreeBSD src repository Added files: contrib/tzcode/stdtime Makefile.inc Symbol.map asctime.c ctime.3 difftime.c localtime.c private.h strftime.3 strftime.c strptime.3 strptime.c time2posix.3 time32.c timelocal.c timelocal.h tzfile.5 tzfile.h Log: SVN rev 204333 on 2010-02-25 21:21:34Z by edwin Copy lib/libc/stdtime to contrib/tzcode/stdtime for the proper split of contributed code and FreeBSD specific code. Revision Changes Path 1.1 +18 -0 src/contrib/tzcode/stdtime/Makefile.inc (new) 1.1 +35 -0 src/contrib/tzcode/stdtime/Symbol.map (new) 1.1 +142 -0 src/contrib/tzcode/stdtime/asctime.c (new) 1.1 +374 -0 src/contrib/tzcode/stdtime/ctime.3 (new) 1.1 +69 -0 src/contrib/tzcode/stdtime/difftime.c (new) 1.1 +2249 -0 src/contrib/tzcode/stdtime/localtime.c (new) 1.1 +326 -0 src/contrib/tzcode/stdtime/private.h (new) 1.1 +278 -0 src/contrib/tzcode/stdtime/strftime.3 (new) 1.1 +634 -0 src/contrib/tzcode/stdtime/strftime.c (new) 1.1 +173 -0 src/contrib/tzcode/stdtime/strptime.3 (new) 1.1 +566 -0 src/contrib/tzcode/stdtime/strptime.c (new) 1.1 +123 -0 src/contrib/tzcode/stdtime/time2posix.3 (new) 1.1 +100 -0 src/contrib/tzcode/stdtime/time32.c (new) 1.1 +117 -0 src/contrib/tzcode/stdtime/timelocal.c (new) 1.1 +55 -0 src/contrib/tzcode/stdtime/timelocal.h (new) 1.1 +152 -0 src/contrib/tzcode/stdtime/tzfile.5 (new) 1.1 +184 -0 src/contrib/tzcode/stdtime/tzfile.h (new)