Deleted Added
full compact
alias.h (50471) alias.h (90111)
1/*-
2 * Copyright (c) 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 * @(#)alias.h 8.2 (Berkeley) 5/4/95
1/*-
2 * Copyright (c) 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 * @(#)alias.h 8.2 (Berkeley) 5/4/95
37 * $FreeBSD: head/bin/sh/alias.h 50471 1999-08-27 23:15:48Z peter $
37 * $FreeBSD: head/bin/sh/alias.h 90111 2002-02-02 06:50:57Z imp $
38 */
39
40#define ALIASINUSE 1
41
42struct alias {
43 struct alias *next;
44 char *name;
45 char *val;
46 int flag;
47};
48
38 */
39
40#define ALIASINUSE 1
41
42struct alias {
43 struct alias *next;
44 char *name;
45 char *val;
46 int flag;
47};
48
49struct alias *lookupalias __P((char *, int));
50int aliascmd __P((int, char **));
51int unaliascmd __P((int, char **));
52void rmaliases __P((void));
49struct alias *lookupalias(char *, int);
50int aliascmd(int, char **);
51int unaliascmd(int, char **);
52void rmaliases(void);