Deleted Added
full compact
cmp.c (87628) cmp.c (92920)
1/*
2 * Copyright (c) 1987, 1990, 1993, 1994
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[] = "@(#)cmp.c 8.3 (Berkeley) 4/2/94";
43#endif
44#endif
45
46#include <sys/cdefs.h>
1/*
2 * Copyright (c) 1987, 1990, 1993, 1994
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[] = "@(#)cmp.c 8.3 (Berkeley) 4/2/94";
43#endif
44#endif
45
46#include <sys/cdefs.h>
47__FBSDID("$FreeBSD: head/usr.bin/cmp/cmp.c 87628 2001-12-10 21:13:08Z dwmalone $");
47__FBSDID("$FreeBSD: head/usr.bin/cmp/cmp.c 92920 2002-03-22 01:22:50Z imp $");
48
49#include <sys/types.h>
50#include <sys/stat.h>
51
52#include <err.h>
53#include <fcntl.h>
54#include <stdio.h>
55#include <stdlib.h>
56#include <string.h>
57#include <unistd.h>
58
59#include "extern.h"
60
61int lflag, sflag, xflag, zflag;
62
48
49#include <sys/types.h>
50#include <sys/stat.h>
51
52#include <err.h>
53#include <fcntl.h>
54#include <stdio.h>
55#include <stdlib.h>
56#include <string.h>
57#include <unistd.h>
58
59#include "extern.h"
60
61int lflag, sflag, xflag, zflag;
62
63static void usage __P((void));
63static void usage(void);
64
65int
66main(argc, argv)
67 int argc;
68 char *argv[];
69{
70 struct stat sb1, sb2;
71 off_t skip1, skip2;

--- 111 unchanged lines hidden ---
64
65int
66main(argc, argv)
67 int argc;
68 char *argv[];
69{
70 struct stat sb1, sb2;
71 off_t skip1, skip2;

--- 111 unchanged lines hidden ---