1 From 4dd4193c59ff3f77e4ab36214ec63425ca834323 Mon Sep 17 00:00:00 2001
2 From: Guilherme Goncalves <guilherme.p.gonc@gmail.com>
3 Date: Thu, 18 Dec 2014 15:01:21 +0900
4 Subject: [PATCH] Add a isblank definition for MSVC < 2013
7 include/jemalloc/internal/jemalloc_internal_decls.h | 7 +++++++
8 1 file changed, 7 insertions(+)
10 diff --git a/include/jemalloc/internal/jemalloc_internal_decls.h b/include/jemalloc/internal/jemalloc_internal_decls.h
11 index fb2effb..65f2e4b 100644
12 --- a/include/jemalloc/internal/jemalloc_internal_decls.h
13 +++ b/include/jemalloc/internal/jemalloc_internal_decls.h
14 @@ -52,6 +52,13 @@ typedef intptr_t ssize_t;
15 # define __func__ __FUNCTION__
16 /* Disable warnings about deprecated system functions. */
17 # pragma warning(disable: 4996)
22 + return (c == '\t' || c == ' ');