diff options
author | Stan Shebs <shebs@codesourcery.com> | 1999-04-26 18:34:20 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1999-04-26 18:34:20 +0000 |
commit | 7a292a7adf506b866905b06b3024c0fd411c4583 (patch) | |
tree | 5b208bb48269b8a82d5c3a5f19c87b45a62a22f4 /gdb/valprint.c | |
parent | 1996fae84682e8ddd146215dd2959ad1ec924c09 (diff) | |
download | binutils-gdb-7a292a7adf506b866905b06b3024c0fd411c4583.tar.gz |
import gdb-19990422 snapshot
Diffstat (limited to 'gdb/valprint.c')
-rw-r--r-- | gdb/valprint.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdb/valprint.c b/gdb/valprint.c index b09da9b3145..ddbbebbc21b 100644 --- a/gdb/valprint.c +++ b/gdb/valprint.c @@ -236,6 +236,7 @@ val_print_type_code_int (type, valaddr, stream) */ #if defined (CC_HAS_LONG_LONG) && !defined (PRINTF_HAS_LONG_LONG) +static void print_decimal PARAMS ((GDB_FILE *stream, char *sign, int use_local, ULONGEST val_ulong)); static void print_decimal (stream, sign, use_local, val_ulong) GDB_FILE *stream; @@ -425,6 +426,7 @@ print_longest (stream, format, use_local, val_long) #endif /* CC_HAS_LONG_LONG || PRINTF_HAS_LONG_LONG */ } +#if 0 void strcat_longest (format, use_local, val_long, buf, buflen) int format; @@ -528,6 +530,7 @@ strcat_longest (format, use_local, val_long, buf, buflen) #endif /* !PRINTF_HAS_LONG_LONG */ } +#endif /* This used to be a macro, but I don't think it is called often enough to merit such treatment. */ |