summaryrefslogtreecommitdiff
path: root/perf
diff options
context:
space:
mode:
Diffstat (limited to 'perf')
-rw-r--r--perf/cairo-perf-report.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/perf/cairo-perf-report.c b/perf/cairo-perf-report.c
index 64a680242..163368fee 100644
--- a/perf/cairo-perf-report.c
+++ b/perf/cairo-perf-report.c
@@ -32,6 +32,7 @@
#include "cairo-perf.h"
#include "cairo-missing.h"
#include "cairo-stats.h"
+#include "cairo-ctype-inline.h"
#include <stdio.h>
#include <stdlib.h>
@@ -100,7 +101,7 @@ do { \
#define parse_string(result) \
do { \
for (end = s; *end; end++) \
- if (isspace (*end)) \
+ if (_cairo_isspace (*end)) \
break; \
(result) = strndup (s, end - s); \
if ((result) == NULL) { \