Deleted Added
full compact
eval.h (194128) eval.h (201053)
1/*-
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Kenneth Almquist.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
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 * @(#)eval.h 8.2 (Berkeley) 5/4/95
1/*-
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Kenneth Almquist.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
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 * @(#)eval.h 8.2 (Berkeley) 5/4/95
33 * $FreeBSD: head/bin/sh/eval.h 194128 2009-06-13 21:17:45Z jilles $
33 * $FreeBSD: head/bin/sh/eval.h 201053 2009-12-27 18:04:05Z jilles $
34 */
35
36extern char *commandname; /* currently executing command */
37extern int exitstatus; /* exit status of last command */
34 */
35
36extern char *commandname; /* currently executing command */
37extern int exitstatus; /* exit status of last command */
38extern int oexitstatus; /* saved exit status */
38extern struct strlist *cmdenviron; /* environment for builtin command */
39
40
41struct backcmd { /* result of evalbackcmd */
42 int fd; /* file descriptor to read from */
43 char *buf; /* buffer */
44 int nleft; /* number of chars in buffer */
45 struct job *jp; /* job structure for command */

--- 31 unchanged lines hidden ---
39extern struct strlist *cmdenviron; /* environment for builtin command */
40
41
42struct backcmd { /* result of evalbackcmd */
43 int fd; /* file descriptor to read from */
44 char *buf; /* buffer */
45 int nleft; /* number of chars in buffer */
46 struct job *jp; /* job structure for command */

--- 31 unchanged lines hidden ---