Deleted Added
full compact
comm.c (1590) comm.c (23690)
1/*
2 * Copyright (c) 1989, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Case Larsen.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

36
37#ifndef lint
38static char copyright[] =
39"@(#) Copyright (c) 1989, 1993, 1994\n\
40 The Regents of the University of California. All rights reserved.\n";
41#endif /* not lint */
42
43#ifndef lint
1/*
2 * Copyright (c) 1989, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Case Larsen.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

36
37#ifndef lint
38static char copyright[] =
39"@(#) Copyright (c) 1989, 1993, 1994\n\
40 The Regents of the University of California. All rights reserved.\n";
41#endif /* not lint */
42
43#ifndef lint
44static char sccsid[] = "@(#)comm.c 8.3 (Berkeley) 4/2/94";
44static char sccsid[] = "@(#)comm.c 8.4 (Berkeley) 5/4/95";
45#endif /* not lint */
46
47#include <fcntl.h>
48#include <limits.h>
49#include <errno.h>
50#include <stdio.h>
51#include <stdlib.h>
52#include <string.h>
45#endif /* not lint */
46
47#include <fcntl.h>
48#include <limits.h>
49#include <errno.h>
50#include <stdio.h>
51#include <stdlib.h>
52#include <string.h>
53#include <unistd.h>
53
54#define MAXLINELEN (LINE_MAX + 1)
55
56char *tabs[] = { "", "\t", "\t\t" };
57
58FILE *file __P((char *));
59void show __P((FILE *, char *, char *));
60void usage __P((void));

--- 126 unchanged lines hidden ---
54
55#define MAXLINELEN (LINE_MAX + 1)
56
57char *tabs[] = { "", "\t", "\t\t" };
58
59FILE *file __P((char *));
60void show __P((FILE *, char *, char *));
61void usage __P((void));

--- 126 unchanged lines hidden ---