Deleted Added
full compact
fold.c (87751) fold.c (92920)
1/*-
2 * Copyright (c) 1990, 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 * Kevin Ruddy.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

42
43#ifndef lint
44#if 0
45static char sccsid[] = "@(#)fold.c 8.1 (Berkeley) 6/6/93";
46#endif
47#endif /* not lint */
48
49#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1990, 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 * Kevin Ruddy.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

42
43#ifndef lint
44#if 0
45static char sccsid[] = "@(#)fold.c 8.1 (Berkeley) 6/6/93";
46#endif
47#endif /* not lint */
48
49#include <sys/cdefs.h>
50__FBSDID("$FreeBSD: head/usr.bin/fold/fold.c 87751 2001-12-12 18:25:53Z charnier $");
50__FBSDID("$FreeBSD: head/usr.bin/fold/fold.c 92920 2002-03-22 01:22:50Z imp $");
51
52#include <err.h>
53#include <stdio.h>
54#include <stdlib.h>
55#include <unistd.h>
56
57#define DEFLINEWIDTH 80
58
51
52#include <err.h>
53#include <stdio.h>
54#include <stdlib.h>
55#include <unistd.h>
56
57#define DEFLINEWIDTH 80
58
59void fold __P((int));
60static void usage __P((void));
59void fold(int);
60static void usage(void);
61
62int
63main(argc, argv)
64 int argc;
65 char **argv;
66{
67 register int ch;
68 int width;

--- 95 unchanged lines hidden ---
61
62int
63main(argc, argv)
64 int argc;
65 char **argv;
66{
67 register int ch;
68 int width;

--- 95 unchanged lines hidden ---