Deleted Added
full compact
zopen.c (87247) zopen.c (87628)
1/*-
2 * Copyright (c) 1985, 1986, 1992, 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 * Diomidis Spinellis and James A. Woods, derived from original
7 * work by Spencer Thomas and Joseph Orost.
8 *

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

30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 */
37
1/*-
2 * Copyright (c) 1985, 1986, 1992, 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 * Diomidis Spinellis and James A. Woods, derived from original
7 * work by Spencer Thomas and Joseph Orost.
8 *

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

30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 */
37
38#include <sys/cdefs.h>
39
40__FBSDID("$FreeBSD: head/usr.bin/compress/zopen.c 87247 2001-12-02 23:58:38Z markm $");
41
42#if defined(LIBC_SCCS) && !defined(lint)
43static char sccsid[] = "@(#)zopen.c 8.1 (Berkeley) 6/27/93";
44#endif /* LIBC_SCCS and not lint */
45
38#if defined(LIBC_SCCS) && !defined(lint)
39static char sccsid[] = "@(#)zopen.c 8.1 (Berkeley) 6/27/93";
40#endif /* LIBC_SCCS and not lint */
41
42#include <sys/cdefs.h>
43__FBSDID("$FreeBSD: head/usr.bin/compress/zopen.c 87628 2001-12-10 21:13:08Z dwmalone $");
44
46/*-
47 * fcompress.c - File compression ala IEEE Computer, June 1984.
48 *
49 * Compress authors:
50 * Spencer W. Thomas (decvax!utah-cs!thomas)
51 * Jim McKie (decvax!mcvax!jim)
52 * Steve Davies (decvax!vax135!petsd!peora!srd)
53 * Ken Turkowski (decvax!decwrl!turtlevax!ken)

--- 694 unchanged lines hidden ---
45/*-
46 * fcompress.c - File compression ala IEEE Computer, June 1984.
47 *
48 * Compress authors:
49 * Spencer W. Thomas (decvax!utah-cs!thomas)
50 * Jim McKie (decvax!mcvax!jim)
51 * Steve Davies (decvax!vax135!petsd!peora!srd)
52 * Ken Turkowski (decvax!decwrl!turtlevax!ken)

--- 694 unchanged lines hidden ---