Deleted Added
full compact
ipx_ntoa.c (84209) ipx_ntoa.c (90868)
1/*
2 * Copyright (c) 1986, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 */
33
34#include <sys/cdefs.h>
1/*
2 * Copyright (c) 1986, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

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

--- 52 unchanged lines hidden ---
43#include <netipx/ipx.h>
44#include <stdio.h>
45
46char *
47ipx_ntoa(addr)
48 struct ipx_addr addr;
49{
50 static char obuf[40];

--- 52 unchanged lines hidden ---