diff options
author | K. Richard Pixley <rich@cygnus> | 1991-09-01 23:40:56 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1991-09-01 23:40:56 +0000 |
commit | f4870f0f269086f28eb2bbfc44c5f9e58aff2a61 (patch) | |
tree | 85a0e79125575e3768556635ae613840b255d435 /gas | |
parent | 617ee8ed46a3d60033190a08391657b8f3b334dd (diff) | |
download | gdb-f4870f0f269086f28eb2bbfc44c5f9e58aff2a61.zip gdb-f4870f0f269086f28eb2bbfc44c5f9e58aff2a61.tar.gz gdb-f4870f0f269086f28eb2bbfc44c5f9e58aff2a61.tar.bz2 |
hack around memset().
Diffstat (limited to 'gas')
-rw-r--r-- | gas/symbols.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gas/symbols.c b/gas/symbols.c index c20eaf5..b2c0d8d 100644 --- a/gas/symbols.c +++ b/gas/symbols.c @@ -144,7 +144,7 @@ char *s; { char *symbol_decode; int label_number; - int label_version; +/* int label_version; */ char *message_format = "\"%d\" (instance number %s of a local label)"; if (s[0] != 'L' @@ -196,6 +196,7 @@ fragS *frag; /* Associated fragment */ unsigned int name_length; char *preserved_copy_of_name; symbolS *symbolP; + extern int memset(); name_length = strlen(name) + 1; /* +1 for \0 */ obstack_grow(¬es, name, name_length); |