|
@@ -33,14 +33,7 @@ Abstract:
|
|
|
#include "config.h"
|
|
#include "config.h"
|
|
|
#endif
|
|
#endif
|
|
|
|
|
|
|
|
-#if HAVE_COREFOUNDATION
|
|
|
|
|
-#define CF_EXCLUDE_CSTD_HEADERS
|
|
|
|
|
-#include <CoreFoundation/CoreFoundation.h>
|
|
|
|
|
-#include <wctype.h>
|
|
|
|
|
-#else
|
|
|
|
|
-#include <wctype.h>
|
|
|
|
|
-#endif
|
|
|
|
|
-
|
|
|
|
|
|
|
+#include "runtime_proxy.h"
|
|
|
#include <errno.h>
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
SET_DEFAULT_DEBUG_CHANNEL(CRT);
|
|
SET_DEFAULT_DEBUG_CHANNEL(CRT);
|
|
@@ -306,7 +299,7 @@ PAL_iswspace(char16_t c)
|
|
|
PERF_ENTRY(iswspace);
|
|
PERF_ENTRY(iswspace);
|
|
|
ENTRY("PAL_iswspace (c=%C)\n", c);
|
|
ENTRY("PAL_iswspace (c=%C)\n", c);
|
|
|
|
|
|
|
|
- ret = iswspace(c);
|
|
|
|
|
|
|
+ ret = proxy_iswspace(c);
|
|
|
|
|
|
|
|
LOGEXIT("PAL_iswspace returns int %d\n", ret);
|
|
LOGEXIT("PAL_iswspace returns int %d\n", ret);
|
|
|
PERF_EXIT(iswspace);
|
|
PERF_EXIT(iswspace);
|
|
@@ -1900,7 +1893,7 @@ PAL_iswprint( char16_t c )
|
|
|
PERF_ENTRY(iswprint);
|
|
PERF_ENTRY(iswprint);
|
|
|
ENTRY("PAL_iswprint (%#X)\n", c);
|
|
ENTRY("PAL_iswprint (%#X)\n", c);
|
|
|
|
|
|
|
|
- ret = iswprint(c);
|
|
|
|
|
|
|
+ ret = proxy_iswprint(c);
|
|
|
|
|
|
|
|
LOGEXIT("PAL_iswprint returns %d\n", ret);
|
|
LOGEXIT("PAL_iswprint returns %d\n", ret);
|
|
|
PERF_EXIT(iswprint);
|
|
PERF_EXIT(iswprint);
|