Deleted Added
full compact
getopt_long.c (105299) getopt_long.c (126039)
1/* $NetBSD: getopt_long.c,v 1.15 2002/01/31 22:43:40 tv Exp $ */
1/* $NetBSD: getopt_long.c,v 1.15 2002/01/31 22:43:40 tv Exp $ */
2/* $FreeBSD: head/lib/libc/stdlib/getopt_long.c 105299 2002-10-16 22:18:42Z alfred $ */
2/* $FreeBSD: head/lib/libc/stdlib/getopt_long.c 126039 2004-02-20 11:55:14Z ru $ */
3
4/*-
5 * Copyright (c) 2000 The NetBSD Foundation, Inc.
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to The NetBSD Foundation
9 * by Dieter Baron and Thomas Klausner.
10 *

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

37 * POSSIBILITY OF SUCH DAMAGE.
38 */
39
40#include <sys/cdefs.h>
41#if defined(LIBC_SCCS) && !defined(lint)
42__RCSID("$NetBSD: getopt_long.c,v 1.15 2002/01/31 22:43:40 tv Exp $");
43#endif /* LIBC_SCCS and not lint */
44
3
4/*-
5 * Copyright (c) 2000 The NetBSD Foundation, Inc.
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to The NetBSD Foundation
9 * by Dieter Baron and Thomas Klausner.
10 *

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

37 * POSSIBILITY OF SUCH DAMAGE.
38 */
39
40#include <sys/cdefs.h>
41#if defined(LIBC_SCCS) && !defined(lint)
42__RCSID("$NetBSD: getopt_long.c,v 1.15 2002/01/31 22:43:40 tv Exp $");
43#endif /* LIBC_SCCS and not lint */
44
45#include "namespace.h"
46
47#include <assert.h>
48#include <err.h>
49#include <errno.h>
50#include <getopt.h>
51#include <stdlib.h>
52#include <string.h>
53
54/* not part of the original file */

--- 440 unchanged lines hidden ---
45#include <assert.h>
46#include <err.h>
47#include <errno.h>
48#include <getopt.h>
49#include <stdlib.h>
50#include <string.h>
51
52/* not part of the original file */

--- 440 unchanged lines hidden ---