changeset 48488:3336a76643ef

Provide ISO C arglists for functions with Boolean args.
author Dave Love <fx@gnu.org>
date Thu, 21 Nov 2002 10:58:03 +0000
parents 61580cb78604
children ada254f3e717
files lwlib/lwlib-Xaw.c
diffstat 1 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lwlib/lwlib-Xaw.c	Thu Nov 21 08:32:06 2002 +0000
+++ b/lwlib/lwlib-Xaw.c	Thu Nov 21 10:58:03 2002 +0000
@@ -119,11 +119,16 @@
 #endif
 
 void
+#ifdef PROTOTYPES
+xaw_update_one_widget (widget_instance *instance, Widget widget,
+		       widget_value *val, Boolean deep_p)
+#else
 xaw_update_one_widget (instance, widget, val, deep_p)
      widget_instance *instance;
      Widget widget;
      widget_value *val;
      Boolean deep_p;
+#endif
 {
 #if 0
   if (XtIsSubclass (widget, scrollbarWidgetClass))
@@ -198,9 +203,13 @@
 }
 
 void
+#ifdef PROTOTYPES
+xaw_pop_instance (widget_instance *instance, Boolean up)
+#else
 xaw_pop_instance (instance, up)
      widget_instance *instance;
      Boolean up;
+#endif
 {
   Widget widget = instance->widget;