Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 31971 | Differences between
and this patch

Collapse All | Expand All

(-)comet/garp/gui/log.c (-5 / +3 lines)
Lines 24-30 Link Here
24
24
25
int x_error();
25
int x_error();
26
void xt_error();
26
void xt_error();
27
void wprint();
27
void wprint( char *fmt, ... );
28
void UnManageCB();
28
void UnManageCB();
29
void PopDownCB ( Widget, XtPointer, XtPointer );
29
void PopDownCB ( Widget, XtPointer, XtPointer );
30
void PopUpCB ( Widget, XtPointer, XtPointer );
30
void PopUpCB ( Widget, XtPointer, XtPointer );
Lines 139-147 Link Here
139
139
140
/*VARARGS*/
140
/*VARARGS*/
141
void
141
void
142
wprint ( fmt, va_alist )
142
wprint ( char *fmt, ... )
143
	char *fmt;
144
	va_dcl
145
{
143
{
146
/*
144
/*
147
 * This function prints a variable length argument list "printf"
145
 * This function prints a variable length argument list "printf"
Lines 158-164 Link Here
158
	log_text = GetLogInfoW ( wpi );
156
	log_text = GetLogInfoW ( wpi );
159
157
160
158
161
	va_start ( args );
159
	va_start ( args, fmt );
162
160
163
/*
161
/*
164
 *	System V has vsprintf, as does SUNOS. But older BSD machines 
162
 *	System V has vsprintf, as does SUNOS. But older BSD machines 

Return to bug 31971