diff options
Diffstat (limited to 'gdb/block.h')
-rw-r--r-- | gdb/block.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/block.h b/gdb/block.h index 38d037e..a368213 100644 --- a/gdb/block.h +++ b/gdb/block.h @@ -139,9 +139,7 @@ struct blockvector /* Special block numbers */ -#define GLOBAL_BLOCK 0 -#define STATIC_BLOCK 1 -#define FIRST_LOCAL_BLOCK 2 +enum { GLOBAL_BLOCK = 0, STATIC_BLOCK = 1, FIRST_LOCAL_BLOCK = 2 }; extern struct symbol *block_function (const struct block *); |