Deleted Added
full compact
colrm.c (132831) colrm.c (200420)
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

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

39
40#if 0
41#ifndef lint
42static char sccsid[] = "@(#)colrm.c 8.2 (Berkeley) 5/4/95";
43#endif
44#endif
45
46#include <sys/cdefs.h>
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

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

39
40#if 0
41#ifndef lint
42static char sccsid[] = "@(#)colrm.c 8.2 (Berkeley) 5/4/95";
43#endif
44#endif
45
46#include <sys/cdefs.h>
47__FBSDID("$FreeBSD: head/usr.bin/colrm/colrm.c 132831 2004-07-29 09:09:22Z tjr $");
47__FBSDID("$FreeBSD: head/usr.bin/colrm/colrm.c 200420 2009-12-11 23:35:38Z delphij $");
48
49#include <sys/types.h>
50#include <err.h>
48
49#include <sys/types.h>
50#include <err.h>
51#include <errno.h>
52#include <limits.h>
53#include <locale.h>
54#include <stdio.h>
55#include <stdlib.h>
51#include <locale.h>
52#include <stdio.h>
53#include <stdlib.h>
56#include <string.h>
57#include <unistd.h>
58#include <wchar.h>
59
60#define TAB 8
61
62void check(FILE *);
63static void usage(void);
64

--- 82 unchanged lines hidden ---
54#include <unistd.h>
55#include <wchar.h>
56
57#define TAB 8
58
59void check(FILE *);
60static void usage(void);
61

--- 82 unchanged lines hidden ---