diff options
Diffstat (limited to 'gdb/guile/scm-symtab.c')
-rw-r--r-- | gdb/guile/scm-symtab.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/guile/scm-symtab.c b/gdb/guile/scm-symtab.c index 0efd0aa..eb83a16 100644 --- a/gdb/guile/scm-symtab.c +++ b/gdb/guile/scm-symtab.c @@ -29,7 +29,7 @@ /* A <gdb:symtab> smob. */ -typedef struct +struct symtab_smob { /* This always appears first. eqable_gdb_smob is used so that symtabs are eq?-able. @@ -42,7 +42,7 @@ typedef struct If this is NULL the symtab is invalid. This can happen when the underlying objfile is freed. */ struct symtab *symtab; -} symtab_smob; +}; /* A <gdb:sal> smob. A smob describing a gdb symtab-and-line object. @@ -50,7 +50,7 @@ typedef struct the validity of symtab_scm. TODO: Sals are not eq?-able at the moment, or even comparable. */ -typedef struct +struct sal_smob { /* This always appears first. */ gdb_smob base; @@ -67,7 +67,7 @@ typedef struct this pointer will not be updated. Use symtab_scm instead to determine if this sal is valid. */ struct symtab_and_line sal; -} sal_smob; +}; static const char symtab_smob_name[] = "gdb:symtab"; /* "symtab-and-line" is pretty long, and "sal" is short and unique. */ |