mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-03 05:12:28 +08:00
Protoization.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2000-11-07 Kevin Buettner <kevinb@redhat.com>
|
||||||
|
|
||||||
|
* valops.c (typecmp): Protoize.
|
||||||
|
* valprint.c (strcat_longest): Protoize.
|
||||||
|
|
||||||
2000-11-07 Kevin Buettner <kevinb@redhat.com>
|
2000-11-07 Kevin Buettner <kevinb@redhat.com>
|
||||||
|
|
||||||
* ia64-tdep.c (native_find_global_pointer): New global variable.
|
* ia64-tdep.c (native_find_global_pointer): New global variable.
|
||||||
|
@ -1937,10 +1937,7 @@ value_bitstring (char *ptr, int len)
|
|||||||
requested operation is type secure, shouldn't we? FIXME. */
|
requested operation is type secure, shouldn't we? FIXME. */
|
||||||
|
|
||||||
static int
|
static int
|
||||||
typecmp (staticp, t1, t2)
|
typecmp (int staticp, struct type *t1[], value_ptr t2[])
|
||||||
int staticp;
|
|
||||||
struct type *t1[];
|
|
||||||
value_ptr t2[];
|
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
|
@ -414,13 +414,10 @@ print_longest (struct ui_file *stream, int format, int use_local,
|
|||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
void
|
void
|
||||||
strcat_longest (format, use_local, val_long, buf, buflen)
|
strcat_longest (int format, int use_local, LONGEST val_long, char *buf,
|
||||||
int format;
|
int buflen)
|
||||||
int use_local;
|
|
||||||
LONGEST val_long;
|
|
||||||
char *buf;
|
|
||||||
int buflen; /* ignored, for now */
|
|
||||||
{
|
{
|
||||||
|
/* FIXME: Use buflen to avoid buffer overflow. */
|
||||||
#if defined (CC_HAS_LONG_LONG) && !defined (PRINTF_HAS_LONG_LONG)
|
#if defined (CC_HAS_LONG_LONG) && !defined (PRINTF_HAS_LONG_LONG)
|
||||||
long vtop, vbot;
|
long vtop, vbot;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user