Deleted Added
full compact
strptime.c (103012) strptime.c (111010)
1/*
2 * Powerdog Industries kindly requests feedback from anyone modifying
3 * this function:
4 *
5 * Date: Thu, 05 Jun 1997 23:17:17 -0400
6 * From: Kevin Ruddy <kevin.ruddy@powerdog.com>
7 * To: James FitzGibbon <james@nexis.net>
8 * Subject: Re: Use of your strptime(3) code (fwd)

--- 37 unchanged lines hidden (view full) ---

46 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
47 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
48 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
49 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
50 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
51 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
52 */
53
1/*
2 * Powerdog Industries kindly requests feedback from anyone modifying
3 * this function:
4 *
5 * Date: Thu, 05 Jun 1997 23:17:17 -0400
6 * From: Kevin Ruddy <kevin.ruddy@powerdog.com>
7 * To: James FitzGibbon <james@nexis.net>
8 * Subject: Re: Use of your strptime(3) code (fwd)

--- 37 unchanged lines hidden (view full) ---

46 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
47 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
48 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
49 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
50 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
51 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
52 */
53
54#include <sys/cdefs.h>
54#ifndef lint
55#ifndef NOID
55#ifndef lint
56#ifndef NOID
56static char copyright[] =
57static char copyright[] __unused =
57"@(#) Copyright (c) 1994 Powerdog Industries. All rights reserved.";
58"@(#) Copyright (c) 1994 Powerdog Industries. All rights reserved.";
58static char sccsid[] = "@(#)strptime.c 0.1 (Powerdog) 94/03/27";
59static char sccsid[] __unused = "@(#)strptime.c 0.1 (Powerdog) 94/03/27";
59#endif /* !defined NOID */
60#endif /* not lint */
60#endif /* !defined NOID */
61#endif /* not lint */
61#include <sys/cdefs.h>
62__FBSDID("$FreeBSD: head/lib/libc/stdtime/strptime.c 103012 2002-09-06 11:24:06Z tjr $");
62__FBSDID("$FreeBSD: head/lib/libc/stdtime/strptime.c 111010 2003-02-16 17:29:11Z nectar $");
63
64#include "namespace.h"
65#include <time.h>
66#include <ctype.h>
67#include <limits.h>
68#include <stdlib.h>
69#include <string.h>
70#include <pthread.h>

--- 470 unchanged lines hidden ---
63
64#include "namespace.h"
65#include <time.h>
66#include <ctype.h>
67#include <limits.h>
68#include <stdlib.h>
69#include <string.h>
70#include <pthread.h>

--- 470 unchanged lines hidden ---