Deleted Added
full compact
extern.h (60583) extern.h (86099)
1/*-
2 * Copyright (c) 1991, 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

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

27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)extern.h 8.3 (Berkeley) 4/2/94
34 *
1/*-
2 * Copyright (c) 1991, 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

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

27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)extern.h 8.3 (Berkeley) 4/2/94
34 *
35 * $FreeBSD: head/usr.bin/cmp/extern.h 60583 2000-05-15 08:30:43Z phk $
35 * $FreeBSD: head/usr.bin/cmp/extern.h 86099 2001-11-05 20:33:40Z dwmalone $
36 *
37 */
38
39#define OK_EXIT 0
40#define DIFF_EXIT 1
41#define ERR_EXIT 2 /* error exit code */
42
36 *
37 */
38
39#define OK_EXIT 0
40#define DIFF_EXIT 1
41#define ERR_EXIT 2 /* error exit code */
42
43void c_regular __P((int, char *, off_t, off_t, int, char *, off_t, off_t));
44void c_special __P((int, char *, off_t, int, char *, off_t));
45void diffmsg __P((char *, char *, off_t, off_t));
46void eofmsg __P((char *));
43void c_regular __P((int, const char *, off_t, off_t, int, const char *, off_t, off_t));
44void c_special __P((int, const char *, off_t, int, const char *, off_t));
45void diffmsg __P((const char *, const char *, off_t, off_t));
46void eofmsg __P((const char *));
47
48extern int lflag, sflag, xflag;
47
48extern int lflag, sflag, xflag;