Deleted Added
sdiff udiff text old ( 211496 ) new ( 220422 )
full compact
1/* $NetBSD: file.c,v 1.5 2011/02/16 18:35:39 joerg Exp $ */
2/* $FreeBSD: head/usr.bin/grep/file.c 220422 2011-04-07 13:03:35Z gabor $ */
3/* $OpenBSD: file.c,v 1.11 2010/07/02 20:48:48 nicm Exp $ */
4
5/*-
6 * Copyright (c) 1999 James Howard and Dag-Erling Co��dan Sm��rgrav
7 * Copyright (C) 2008-2010 Gabor Kovesdan <gabor@FreeBSD.org>
8 * Copyright (C) 2010 Dimitry Andric <dimitry@andric.com>
9 * All rights reserved.
10 *

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

26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 */
32
33#include <sys/cdefs.h>
34__FBSDID("$FreeBSD: head/usr.bin/grep/file.c 220422 2011-04-07 13:03:35Z gabor $");
35
36#include <sys/param.h>
37#include <sys/types.h>
38#include <sys/stat.h>
39
40#include <bzlib.h>
41#include <err.h>
42#include <errno.h>

--- 212 unchanged lines hidden ---