# HG changeset patch # User Dave Love # Date 1037876283 0 # Node ID 3336a76643ef5fe05ae03c8cdde6cf502aba3116 # Parent 61580cb7860443738f0e5dbafadf1973b6044c4b Provide ISO C arglists for functions with Boolean args. diff -r 61580cb78604 -r 3336a76643ef lwlib/lwlib-Xaw.c --- 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;