Index: /trunk/src/VBox/Frontends/VBoxBFE/USBProxyServiceLinux.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VBoxBFE/USBProxyServiceLinux.cpp	(revision 24012)
+++ /trunk/src/VBox/Frontends/VBoxBFE/USBProxyServiceLinux.cpp	(revision 24013)
@@ -33,6 +33,7 @@
 #include <VBox/err.h>
 
+#include <iprt/alloc.h>
+#include <iprt/ctype.h>
 #include <iprt/string.h>
-#include <iprt/alloc.h>
 #include <iprt/assert.h>
 #include <iprt/file.h>
@@ -42,5 +43,4 @@
 #include <string.h>
 #include <stdio.h>
-#include <ctype.h>
 #include <errno.h>
 #include <sys/statfs.h>
@@ -282,5 +282,5 @@
 {
     char *pszNext = *ppszNext;
-    if (!isspace (*pszNext) && *pszNext)
+    if (!RT_C_IS_SPACE (*pszNext) && *pszNext)
     {
         /* skip unit */
@@ -302,5 +302,5 @@
 
         /* blank or end of the line. */
-        if (!isspace (*pszNext) && *pszNext)
+        if (!RT_C_IS_SPACE (*pszNext) && *pszNext)
         {
             AssertMsgFailed (("pszNext=%s\n", pszNext));
@@ -359,10 +359,10 @@
         if (paSuffs)
         {
-            if (!isspace (*pszNext) && *pszNext)
+            if (!RT_C_IS_SPACE (*pszNext) && *pszNext)
             {
                 for (PCUSBSUFF pSuff = paSuffs; pSuff->szSuff[0]; pSuff++)
                 {
                     if (    !strncmp (pSuff->szSuff, pszNext, pSuff->cchSuff)
-                        &&  (!pszNext[pSuff->cchSuff] || isspace (pszNext[pSuff->cchSuff])))
+                        &&  (!pszNext[pSuff->cchSuff] || RT_C_IS_SPACE (pszNext[pSuff->cchSuff])))
                     {
                         if (pSuff->uDiv)
@@ -507,5 +507,5 @@
     if (!psz)
         return strchr (pszValue,  '\0');
-    while (psz > pszValue && !isspace (psz[-1]))
+    while (psz > pszValue && !RT_C_IS_SPACE (psz[-1]))
         psz--;
     Assert (psz > pszValue);
