diff options
author | DJ Delorie <dj@redhat.com> | 2001-10-23 15:32:45 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2001-10-23 15:32:45 +0000 |
commit | d311a83ab4ab717bcfc232e535c37dd743925ddd (patch) | |
tree | 797c07b8bdcde705e3121bc819424f2423cadf77 /include | |
parent | 1a3d33ce816075410cb4283e161bee7c79f827e4 (diff) | |
download | gdb-d311a83ab4ab717bcfc232e535c37dd743925ddd.zip gdb-d311a83ab4ab717bcfc232e535c37dd743925ddd.tar.gz gdb-d311a83ab4ab717bcfc232e535c37dd743925ddd.tar.bz2 |
merge from gcc
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 7 | ||||
-rw-r--r-- | include/libiberty.h | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 6c045d3..67caa96 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,10 @@ +2001-10-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * libiberty.h (hex_init): Revert delete. + + * libiberty.h (_hex_value): Const-ify. + (hex_init): Delete. + 2001-10-16 Christopher Faylor <cgf@redhat.com> * filenames.h: Add cygwin to the list of dosish style path systems. diff --git a/include/libiberty.h b/include/libiberty.h index 9501365..455643d 100644 --- a/include/libiberty.h +++ b/include/libiberty.h @@ -240,7 +240,7 @@ extern PTR xmemdup PARAMS ((const PTR, size_t, size_t)) ATTRIBUTE_MALLOC; #define _hex_array_size 256 #define _hex_bad 99 -extern char _hex_value[_hex_array_size]; +extern const char _hex_value[_hex_array_size]; extern void hex_init PARAMS ((void)); #define hex_p(c) (hex_value (c) != _hex_bad) /* If you change this, note well: Some code relies on side effects in |