Deleted Added
full compact
colrm.c (1590) colrm.c (23690)
1/*-
2 * Copyright (c) 1991, 1993
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

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

33
34#ifndef lint
35static char copyright[] =
36"@(#) Copyright (c) 1991, 1993\n\
37 The Regents of the University of California. All rights reserved.\n";
38#endif /* not lint */
39
40#ifndef lint
1/*-
2 * Copyright (c) 1991, 1993
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

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

33
34#ifndef lint
35static char copyright[] =
36"@(#) Copyright (c) 1991, 1993\n\
37 The Regents of the University of California. All rights reserved.\n";
38#endif /* not lint */
39
40#ifndef lint
41static char sccsid[] = "@(#)colrm.c 8.1 (Berkeley) 6/6/93";
41static char sccsid[] = "@(#)colrm.c 8.2 (Berkeley) 5/4/95";
42#endif /* not lint */
43
44#include <sys/types.h>
45#include <limits.h>
46#include <errno.h>
47#include <stdio.h>
48#include <stdlib.h>
49#include <string.h>
42#endif /* not lint */
43
44#include <sys/types.h>
45#include <limits.h>
46#include <errno.h>
47#include <stdio.h>
48#include <stdlib.h>
49#include <string.h>
50#include <unistd.h>
50
51#define TAB 8
52
53void err __P((const char *, ...));
54void check __P((FILE *));
55void usage __P((void));
56
57int

--- 110 unchanged lines hidden ---
51
52#define TAB 8
53
54void err __P((const char *, ...));
55void check __P((FILE *));
56void usage __P((void));
57
58int

--- 110 unchanged lines hidden ---