Author: jberry
Date: Thu May 26 17:17:26 2005
New Revision: 178717

URL: http://svn.apache.org/viewcvs?rev=178717&view=rev
Log:
syntax errors

Modified:
    xerces/c/branches/jberry/3.0-unstable/lib/iswspace.c
    xerces/c/branches/jberry/3.0-unstable/lib/towlower.c
    xerces/c/branches/jberry/3.0-unstable/lib/towupper.c

Modified: xerces/c/branches/jberry/3.0-unstable/lib/iswspace.c
URL: 
http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/lib/iswspace.c?rev=178717&r1=178716&r2=178717&view=diff
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/lib/iswspace.c (original)
+++ xerces/c/branches/jberry/3.0-unstable/lib/iswspace.c Thu May 26 17:17:26 
2005
@@ -20,7 +20,7 @@
 
 #include "iswspace.h"
 
-int iswspace(int wc);
+int iswspace(int wc)
 {
        return wc == ' ';
 }

Modified: xerces/c/branches/jberry/3.0-unstable/lib/towlower.c
URL: 
http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/lib/towlower.c?rev=178717&r1=178716&r2=178717&view=diff
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/lib/towlower.c (original)
+++ xerces/c/branches/jberry/3.0-unstable/lib/towlower.c Thu May 26 17:17:26 
2005
@@ -20,7 +20,7 @@
 
 #include "towlower.h"
 
-int towlower(int wc);
+int towlower(int wc)
 {
        return (wc >= 'A') && (wc <= 'Z')
                                ? wc + 'a' - 'A'

Modified: xerces/c/branches/jberry/3.0-unstable/lib/towupper.c
URL: 
http://svn.apache.org/viewcvs/xerces/c/branches/jberry/3.0-unstable/lib/towupper.c?rev=178717&r1=178716&r2=178717&view=diff
==============================================================================
--- xerces/c/branches/jberry/3.0-unstable/lib/towupper.c (original)
+++ xerces/c/branches/jberry/3.0-unstable/lib/towupper.c Thu May 26 17:17:26 
2005
@@ -20,7 +20,7 @@
 
 #include "towupper.h"
 
-int towupper(int c);
+int towupper(int c)
 {
        return (c >= 'a') && (c <= 'z')
                                ? c - 'a' + 'A'



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to