diff options
author | Daniel Jacobowitz <drow@false.org> | 2006-09-21 13:50:51 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2006-09-21 13:50:51 +0000 |
commit | 253c8abb67a72cdfcdb2be4b92e2dba8689e6554 (patch) | |
tree | 7d79e3725009992103877706f6e2317a558a663c /gdb/defs.h | |
parent | c96fc75e9e90e0781789095b842495bbcdbb037a (diff) | |
download | gdb-253c8abb67a72cdfcdb2be4b92e2dba8689e6554.zip gdb-253c8abb67a72cdfcdb2be4b92e2dba8689e6554.tar.gz gdb-253c8abb67a72cdfcdb2be4b92e2dba8689e6554.tar.bz2 |
* 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
@@ -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 *); |