Deleted Added
full compact
fortune.c (53210) fortune.c (53920)
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 * Ken Arnold.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
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 */
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 * Ken Arnold.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
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/* $FreeBSD: head/games/fortune/fortune/fortune.c 53210 1999-11-16 02:58:06Z billf $ */
36/* $FreeBSD: head/games/fortune/fortune/fortune.c 53920 1999-11-30 03:50:02Z billf $ */
37
38#ifndef lint
39static const char copyright[] =
40"@(#) Copyright (c) 1986, 1993\n\
41 The Regents of the University of California. All rights reserved.\n";
42#endif /* not lint */
43
44#ifndef lint
37
38#ifndef lint
39static const char copyright[] =
40"@(#) Copyright (c) 1986, 1993\n\
41 The Regents of the University of California. All rights reserved.\n";
42#endif /* not lint */
43
44#ifndef lint
45#if 0
45static const char sccsid[] = "@(#)fortune.c 8.1 (Berkeley) 5/31/93";
46static const char sccsid[] = "@(#)fortune.c 8.1 (Berkeley) 5/31/93";
47#endif
48static const char rcsid[] =
49 "$FreeBSD: head/games/fortune/fortune/fortune.c 53920 1999-11-30 03:50:02Z billf $";
46#endif /* not lint */
47
48# include <sys/param.h>
49# include <sys/stat.h>
50
51# include <dirent.h>
52# include <fcntl.h>
53# include <assert.h>

--- 1356 unchanged lines hidden ---
50#endif /* not lint */
51
52# include <sys/param.h>
53# include <sys/stat.h>
54
55# include <dirent.h>
56# include <fcntl.h>
57# include <assert.h>

--- 1356 unchanged lines hidden ---