]> git.ozlabs.org Git - ccan/blobdiff - tools/configurator/configurator.c
tdb2: avoid C++ reserved words (ie. private)
[ccan] / tools / configurator / configurator.c
index af7955a3144449db4cb1d04fc82454c40558a8ae..f1c7088fbc1b33f22a7372ded823049144871059 100644 (file)
@@ -102,6 +102,9 @@ static struct test tests[] = {
        { "HAVE_GETPAGESIZE", DEFINES_FUNC, NULL,
          "#include <unistd.h>\n"
          "static int func(void) { return getpagesize(); }" },
+       { "HAVE_ISBLANK", DEFINES_FUNC, NULL,
+         "#include <ctype.h>\n"
+         "static int func(void) { return isblank(' '); }" },
        { "HAVE_LITTLE_ENDIAN", INSIDE_MAIN|EXECUTE, NULL,
          "union { int i; char c[sizeof(int)]; } u;\n"
          "u.i = 0x01020304;\n"