diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ChangeLog | 2 | ||||
-rw-r--r-- | include/libiberty.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 605f094157e..6d15b6ed74a 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,5 +1,7 @@ 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. diff --git a/include/libiberty.h b/include/libiberty.h index 542eae54de4..455643d3a92 100644 --- a/include/libiberty.h +++ b/include/libiberty.h @@ -241,6 +241,7 @@ extern PTR xmemdup PARAMS ((const PTR, size_t, size_t)) ATTRIBUTE_MALLOC; #define _hex_array_size 256 #define _hex_bad 99 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 the argument being performed exactly once. */ |