Use -std=gnu89 in tools/c-index-test/CMakeLists.txt

With the old use of -std=c89 off_t is not defined and the build fails.

This seems to be another variation of
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40278.

llvm-svn: 198748
diff --git a/clang/tools/c-index-test/CMakeLists.txt b/clang/tools/c-index-test/CMakeLists.txt
index 7360656..113172a 100644
--- a/clang/tools/c-index-test/CMakeLists.txt
+++ b/clang/tools/c-index-test/CMakeLists.txt
@@ -5,7 +5,7 @@
 if(NOT MSVC)
   set_property(
     SOURCE c-index-test.c
-    PROPERTY COMPILE_FLAGS "-std=c89"
+    PROPERTY COMPILE_FLAGS "-std=gnu89"
     )
 endif()