Deleted Added
full compact
fsi_gram.y (42629) fsi_gram.y (51292)
1/*
1/*
2 * Copyright (c) 1997-1998 Erez Zadok
2 * Copyright (c) 1997-1999 Erez Zadok
3 * Copyright (c) 1989 Jan-Simon Pendry
4 * Copyright (c) 1989 Imperial College of Science, Technology & Medicine
5 * Copyright (c) 1989 The Regents of the University of California.
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to Berkeley by
9 * Jan-Simon Pendry at Imperial College, London.
10 *

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

33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 *
39 * %W% (Berkeley) %G%
40 *
3 * Copyright (c) 1989 Jan-Simon Pendry
4 * Copyright (c) 1989 Imperial College of Science, Technology & Medicine
5 * Copyright (c) 1989 The Regents of the University of California.
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to Berkeley by
9 * Jan-Simon Pendry at Imperial College, London.
10 *

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

33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 *
39 * %W% (Berkeley) %G%
40 *
41 * $Id: fsi_gram.y,v 1.1.1.1 1998/11/05 02:04:54 ezk Exp $
41 * $Id: fsi_gram.y,v 1.3 1999/04/16 14:21:14 ezk Exp $
42 *
43 */
44
45%{
46#ifdef HAVE_CONFIG_H
47# include <config.h>
48#endif /* HAVE_CONFIG_H */
49#include <am_defs.h>
50#include <fsi_data.h>
51#include <fsinfo.h>
52
42 *
43 */
44
45%{
46#ifdef HAVE_CONFIG_H
47# include <config.h>
48#endif /* HAVE_CONFIG_H */
49#include <am_defs.h>
50#include <fsi_data.h>
51#include <fsinfo.h>
52
53/* AIX requires this to be the first thing in the file. */
54#ifndef __GNUC__
55# if HAVE_ALLOCA_H
56# include <alloca.h>
57# else /* not HAVE_ALLOCA_H */
58# ifdef _AIX
59#pragma alloca
60# else /* not _AIX */
61# ifndef alloca
62 /* predefined by HP cc +Olibcalls */
63voidp alloca();
64# endif /* not alloca */
65# endif /* not _AIX */
66# endif /* not HAVE_ALLOCA_H */
67#endif /* not __GNUC__ */
68
53extern qelem *list_of_hosts, *list_of_automounts;
54%}
55
56%union {
57 auto_tree *a;
58 disk_fs *d;
59 ether_if *e;
60 host *h;

--- 359 unchanged lines hidden ---
69extern qelem *list_of_hosts, *list_of_automounts;
70%}
71
72%union {
73 auto_tree *a;
74 disk_fs *d;
75 ether_if *e;
76 host *h;

--- 359 unchanged lines hidden ---