diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-10-31 15:48:08 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-10-31 15:48:08 +0000 |
commit | 08b0e8daeb683686b876d72674962ad96df21d45 (patch) | |
tree | 1ea1b062faa3f0304c84da6c488ad3faa4a63f72 | |
parent | 7e36e95e213285bea70854541150868b6b74842b (diff) |
Add two missing CINDEX_LINKAGE uses, in libCIndex, from Kovarththanan
Rajaratnam!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@85665 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang-c/Index.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang-c/Index.h b/include/clang-c/Index.h index 5e5504161f..1a58f44ff4 100644 --- a/include/clang-c/Index.h +++ b/include/clang-c/Index.h @@ -246,8 +246,8 @@ CINDEX_LINKAGE void clang_loadDeclaration(CXDecl, CXDeclIterator, CXClientData); /* * CXFile Operations. */ -const char *clang_getFileName(CXFile SFile); -time_t clang_getFileTime(CXFile SFile); +CINDEX_LINKAGE const char *clang_getFileName(CXFile SFile); +CINDEX_LINKAGE time_t clang_getFileTime(CXFile SFile); /* * CXEntity Operations. |