Deleted Added
full compact
bltin.h (75577) bltin.h (90111)
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

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

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)bltin.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

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

29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)bltin.h 8.2 (Berkeley) 5/4/95
37 * $FreeBSD: head/bin/sh/bltin/bltin.h 75577 2001-04-17 07:46:38Z kris $
37 * $FreeBSD: head/bin/sh/bltin/bltin.h 90111 2002-02-02 06:50:57Z imp $
38 */
39
40/*
41 * This file is included by programs which are optionally built into the
42 * shell. If SHELL is defined, we try to map the standard UNIX library
43 * routines to ash routines using defines.
44 */
45

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

78
79#else
80#undef NULL
81#include <stdio.h>
82#undef main
83#define INITARGS(argv) if ((commandname = argv[0]) == NULL) {fputs("Argc is zero\n", stderr); exit(2);} else
84#endif
85
38 */
39
40/*
41 * This file is included by programs which are optionally built into the
42 * shell. If SHELL is defined, we try to map the standard UNIX library
43 * routines to ash routines using defines.
44 */
45

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

78
79#else
80#undef NULL
81#include <stdio.h>
82#undef main
83#define INITARGS(argv) if ((commandname = argv[0]) == NULL) {fputs("Argc is zero\n", stderr); exit(2);} else
84#endif
85
86#ifdef __STDC__
87pointer stalloc(int);
88void error(const char *, ...) __printf0like(1, 2);
86pointer stalloc(int);
87void error(const char *, ...) __printf0like(1, 2);
89#else
90pointer stalloc();
91void error();
92#endif
93
94
95extern char *commandname;
88
89
90extern char *commandname;