diff options
author | gildea <empty> | 1990-12-28 13:55:00 +0000 |
---|---|---|
committer | gildea <empty> | 1990-12-28 13:55:00 +0000 |
commit | 2ceb635b9b16ebbc619ee4b29a08b3f964994818 (patch) | |
tree | 701a6788603e24175493c01e7c11032a266d5743 /xc/lib/Xt/Converters.c | |
parent | 0e62a1d1e0df0a0144d49505d9f9ac32fb67f33e (diff) |
move static function decl outside block
Diffstat (limited to 'xc/lib/Xt/Converters.c')
-rw-r--r-- | xc/lib/Xt/Converters.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xc/lib/Xt/Converters.c b/xc/lib/Xt/Converters.c index 285928c83..563f270d7 100644 --- a/xc/lib/Xt/Converters.c +++ b/xc/lib/Xt/Converters.c @@ -1,4 +1,4 @@ -/* "$XConsortium: Converters.c,v 1.59 90/12/11 12:01:58 rws Exp $"; */ +/* "$XConsortium: Converters.c,v 1.60 90/12/12 14:50:48 rws Exp $"; */ /*LINTLIBRARY*/ /*********************************************************** @@ -61,6 +61,8 @@ static Const String XtNconversionError = "conversionError"; return True; \ } +static Boolean CvtStringToBoolean(); + #if NeedFunctionPrototypes void XtDisplayStringConversionWarning( Display* dpy, @@ -77,7 +79,6 @@ void XtDisplayStringConversionWarning(dpy, from, toType) if (report_it == Check) { XrmDatabase rdb = XtDatabase(dpy); - static Boolean CvtStringToBoolean(); XrmName xrm_name[2]; XrmClass xrm_class[2]; XrmRepresentation rep_type; @@ -147,7 +148,6 @@ static Boolean CvtIntToFont(); static Boolean CvtIntOrPixelToXColor(); static Boolean CvtIntToPixel(); -static Boolean CvtStringToBoolean(); static Boolean CvtStringToBool(); static Boolean CvtStringToCursor(); static Boolean CvtStringToDisplay(); |