Deleted Added
full compact
ipx_addr.c (84209) ipx_addr.c (90868)
1/*
2 * Copyright (c) 1986, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * J.Q. Johnson.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
37#include <sys/cdefs.h>
1/*
2 * Copyright (c) 1986, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * J.Q. Johnson.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
37#include <sys/cdefs.h>
38__FBSDID("$FreeBSD: head/lib/libipx/ipx_addr.c 84209 2001-09-30 21:45:06Z dillon $");
38__FBSDID("$FreeBSD: head/lib/libipx/ipx_addr.c 90868 2002-02-18 20:35:27Z mike $");
39
40#if defined(LIBC_SCCS) && !defined(lint)
41static char sccsid[] = "@(#)ipx_addr.c";
42#endif /* LIBC_SCCS and not lint */
43
44#include <sys/param.h>
39
40#if defined(LIBC_SCCS) && !defined(lint)
41static char sccsid[] = "@(#)ipx_addr.c";
42#endif /* LIBC_SCCS and not lint */
43
44#include <sys/param.h>
45#include <arpa/inet.h>
45#include <netipx/ipx.h>
46#include <stdio.h>
47#include <string.h>
48
49static struct ipx_addr addr, zero_addr;
50
51static void Field(), cvtbase();
52

--- 178 unchanged lines hidden ---
46#include <netipx/ipx.h>
47#include <stdio.h>
48#include <string.h>
49
50static struct ipx_addr addr, zero_addr;
51
52static void Field(), cvtbase();
53

--- 178 unchanged lines hidden ---