X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Fstr%2Fdebug.c;h=9ef756766aa557b61e1ab4abeaaceba71900beaf;hp=004a874f7c82778d93ff389d3b542ba0eb5ed9a6;hb=082d651ffd87f78f20d56aa477c3c75d7361c1e1;hpb=b0a59bdcb3356eec66015bcdffd9a3fbaef0489a diff --git a/ccan/str/debug.c b/ccan/str/debug.c index 004a874f..9ef75676 100644 --- a/ccan/str/debug.c +++ b/ccan/str/debug.c @@ -24,11 +24,13 @@ int str_isascii(int i) return isascii(i); } +#if HAVE_ISBLANK int str_isblank(int i) { assert(i >= -1 && i < 256); return isblank(i); } +#endif int str_iscntrl(int i) {