* configure.in (mips-dec-netbsd*): Delete.
[deliverable/binutils-gdb.git] / gas / macro.h
index 7c30086d5f458fc5413adaa8d7c08e58105375c7..beff9a8b50a0c1dd028b5b94eaa5d67e86c7724e 100644 (file)
@@ -1,5 +1,6 @@
 /* macro.h - header file for macro support for gas and gasp
-   Copyright (C) 1994, 95, 96, 97, 98, 2000 Free Software Foundation, Inc.
+   Copyright 1994, 1995, 1996, 1997, 1998, 2000
+   Free Software Foundation, Inc.
 
    Written by Steve and Judy Chamberlain of Cygnus Support,
       sac@cygnus.com
 
 /* describe the formal arguments to a macro */
 
-typedef struct formal_struct
-  {
-    struct formal_struct *next;        /* next formal in list */
-    sb name;                   /* name of the formal */
-    sb def;                    /* the default value */
-    sb actual;                 /* the actual argument (changed on each expansion) */
-    int index;                 /* the index of the formal 0..formal_count-1 */
-  }
-formal_entry;
+typedef struct formal_struct {
+  struct formal_struct *next;  /* next formal in list */
+  sb name;                     /* name of the formal */
+  sb def;                      /* the default value */
+  sb actual;                   /* the actual argument (changed on each expansion) */
+  int index;                   /* the index of the formal 0..formal_count-1 */
+} formal_entry;
 
 /* Other values found in the index field of a formal_entry.  */
 #define QUAL_INDEX (-1)
@@ -55,14 +54,12 @@ formal_entry;
 
 /* describe the macro.  */
 
-typedef struct macro_struct
-  {
-    sb sub;                    /* substitution text.  */
-    int formal_count;          /* number of formal args.  */
-    formal_entry *formals;     /* pointer to list of formal_structs */
-    struct hash_control *formal_hash; /* hash table of formals.  */
-  }
-macro_entry;
+typedef struct macro_struct {
+  sb sub;                      /* substitution text.  */
+  int formal_count;            /* number of formal args.  */
+  formal_entry *formals;       /* pointer to list of formal_structs */
+  struct hash_control *formal_hash; /* hash table of formals.  */
+} macro_entry;
 
 /* Whether any macros have been defined.  */
 
This page took 0.024859 seconds and 4 git commands to generate.