Deleted Added
full compact
extern.h (202719) extern.h (203498)
1/* $FreeBSD: head/usr.bin/bc/extern.h 202719 2010-01-20 21:30:52Z gabor $ */
1/* $FreeBSD: head/usr.bin/bc/extern.h 203498 2010-02-04 18:43:05Z delphij $ */
2/* $OpenBSD: extern.h,v 1.6 2006/03/18 20:44:43 otto Exp $ */
3
4/*
5 * Copyright (c) 2003, Otto Moerbeek <otto@drijf.net>
6 *
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.

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

30void abort_line(int);
31
32extern int lineno;
33extern int fileindex;
34extern int sargc;
35extern const char **sargv;
36extern const char *filename;
37extern char *cmdexpr;
2/* $OpenBSD: extern.h,v 1.6 2006/03/18 20:44:43 otto Exp $ */
3
4/*
5 * Copyright (c) 2003, Otto Moerbeek <otto@drijf.net>
6 *
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.

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

30void abort_line(int);
31
32extern int lineno;
33extern int fileindex;
34extern int sargc;
35extern const char **sargv;
36extern const char *filename;
37extern char *cmdexpr;
38bool interactive;
38extern bool interactive;
39extern EditLine *el;
40extern History *hist;
41extern HistEvent he;
42