Protoization.
authorKevin Buettner <kevinb@redhat.com>
Wed, 8 Nov 2000 05:10:18 +0000 (05:10 +0000)
committerKevin Buettner <kevinb@redhat.com>
Wed, 8 Nov 2000 05:10:18 +0000 (05:10 +0000)
gdb/ChangeLog
gdb/valops.c
gdb/valprint.c

index ef1ff14e29103536e261ae9c94269ca6eb3ac498..43b8fc145d600cf8e15366fd9f3bc781913bb220 100644 (file)
@@ -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>
 
        * ia64-tdep.c (native_find_global_pointer):  New global variable.
index 7feec533085e90c2d240a4bc08b382764da4a642..918398493bcc7ad95388ddd7fc700e243bae6979 100644 (file)
@@ -1937,10 +1937,7 @@ value_bitstring (char *ptr, int len)
    requested operation is type secure, shouldn't we?  FIXME.  */
 
 static int
-typecmp (staticp, t1, t2)
-     int staticp;
-     struct type *t1[];
-     value_ptr t2[];
+typecmp (int staticp, struct type *t1[], value_ptr t2[])
 {
   int i;
 
index 1ca46be9852881be7cbda45ab016ac9131327a41..0432bf241865ff3e60390eda5f25b73e0a81410d 100644 (file)
@@ -414,13 +414,10 @@ print_longest (struct ui_file *stream, int format, int use_local,
 
 #if 0
 void
-strcat_longest (format, use_local, val_long, buf, buflen)
-     int format;
-     int use_local;
-     LONGEST val_long;
-     char *buf;
-     int buflen;               /* ignored, for now */
+strcat_longest (int format, int use_local, LONGEST val_long, char *buf,
+               int buflen)
 {
+/* FIXME: Use buflen to avoid buffer overflow.  */
 #if defined (CC_HAS_LONG_LONG) && !defined (PRINTF_HAS_LONG_LONG)
   long vtop, vbot;