diff options
author | Daniel Jacobowitz <dan@debian.org> | 2006-09-21 13:50:51 +0000 |
---|---|---|
committer | Daniel Jacobowitz <dan@debian.org> | 2006-09-21 13:50:51 +0000 |
commit | cdbf4cd48d4c74ddb4859dd2bb7dda31cbf465f1 (patch) | |
tree | 20413366002842fab1c9ec22b31c6a099f90a34d /gdb/defs.h | |
parent | 2af1b1f7f102e67e9006debd5222302284346d14 (diff) | |
download | gdb-cdbf4cd48d4c74ddb4859dd2bb7dda31cbf465f1.tar.gz |
* ada-lex.l (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int)
(strtoulst): Moved to ...
* utils.c (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int)
(strtoulst): ... here. Enhanced to behave more similarly
to strtoul.
* defs.h (strtoulst): New prototype.
Diffstat (limited to 'gdb/defs.h')
-rw-r--r-- | gdb/defs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/defs.h b/gdb/defs.h index c9d55041fb9..f7dfbacabd9 100644 --- a/gdb/defs.h +++ b/gdb/defs.h @@ -415,6 +415,8 @@ extern char *xfullpath (const char *); extern unsigned long gnu_debuglink_crc32 (unsigned long crc, unsigned char *buf, size_t len); +ULONGEST strtoulst (const char *num, const char **trailer, int base); + /* From demangle.c */ extern void set_demangling_style (char *); |