Deleted Added
full compact
last.c (62871) last.c (65428)
1/*
2 * Copyright (c) 1987, 1993, 1994
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

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

25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
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 *
1/*
2 * Copyright (c) 1987, 1993, 1994
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

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

25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
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 * $FreeBSD: head/usr.bin/last/last.c 62871 2000-07-10 06:02:13Z kris $
33 * $FreeBSD: head/usr.bin/last/last.c 65428 2000-09-04 06:09:54Z imp $
34 */
35
36#ifndef lint
37static char copyright[] =
38"@(#) Copyright (c) 1987, 1993, 1994\n\
39 The Regents of the University of California. All rights reserved.\n";
40#endif /* not lint */
41

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

103 exit(1);
104}
105
106int
107main(argc, argv)
108 int argc;
109 char *argv[];
110{
34 */
35
36#ifndef lint
37static char copyright[] =
38"@(#) Copyright (c) 1987, 1993, 1994\n\
39 The Regents of the University of California. All rights reserved.\n";
40#endif /* not lint */
41

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

103 exit(1);
104}
105
106int
107main(argc, argv)
108 int argc;
109 char *argv[];
110{
111 extern int optind;
112 extern char *optarg;
113 int ch;
114 char *p;
115
116 (void) setlocale(LC_TIME, "");
117
118 maxrec = -1;
119 while ((ch = getopt(argc, argv, "0123456789f:h:st:w")) != -1)
120 switch (ch) {

--- 333 unchanged lines hidden ---
111 int ch;
112 char *p;
113
114 (void) setlocale(LC_TIME, "");
115
116 maxrec = -1;
117 while ((ch = getopt(argc, argv, "0123456789f:h:st:w")) != -1)
118 switch (ch) {

--- 333 unchanged lines hidden ---