Deleted Added
full compact
route.c (160130) route.c (160787)
1/*
2 * Copyright (c) 1983, 1988, 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

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

33
34#if 0
35#ifndef lint
36static char sccsid[] = "From: @(#)route.c 8.6 (Berkeley) 4/28/95";
37#endif /* not lint */
38#endif
39
40#include <sys/cdefs.h>
1/*
2 * Copyright (c) 1983, 1988, 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

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

33
34#if 0
35#ifndef lint
36static char sccsid[] = "From: @(#)route.c 8.6 (Berkeley) 4/28/95";
37#endif /* not lint */
38#endif
39
40#include <sys/cdefs.h>
41__FBSDID("$FreeBSD: head/usr.bin/netstat/route.c 160130 2006-07-06 11:59:27Z oleg $");
41__FBSDID("$FreeBSD: head/usr.bin/netstat/route.c 160787 2006-07-28 16:09:19Z yar $");
42
43#include <sys/param.h>
44#include <sys/protosw.h>
45#include <sys/socket.h>
46#include <sys/time.h>
47
48#include <net/ethernet.h>
49#include <net/if.h>

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

58#include <netatalk/at.h>
59#include <netgraph/ng_socket.h>
60
61#include <sys/sysctl.h>
62
63#include <arpa/inet.h>
64#include <libutil.h>
65#include <netdb.h>
42
43#include <sys/param.h>
44#include <sys/protosw.h>
45#include <sys/socket.h>
46#include <sys/time.h>
47
48#include <net/ethernet.h>
49#include <net/if.h>

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

58#include <netatalk/at.h>
59#include <netgraph/ng_socket.h>
60
61#include <sys/sysctl.h>
62
63#include <arpa/inet.h>
64#include <libutil.h>
65#include <netdb.h>
66#include <stdint.h>
66#include <stdio.h>
67#include <stdlib.h>
68#include <string.h>
69#include <sysexits.h>
70#include <unistd.h>
71#include <err.h>
72#include "netstat.h"
73

--- 1062 unchanged lines hidden ---
67#include <stdio.h>
68#include <stdlib.h>
69#include <string.h>
70#include <sysexits.h>
71#include <unistd.h>
72#include <err.h>
73#include "netstat.h"
74

--- 1062 unchanged lines hidden ---