diff options
author | Elliott Hughes <enh@google.com> | 2016-12-29 10:38:37 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2016-12-29 10:38:37 -0800 |
commit | a970c8f1fc3baa890dbf872a444781b84d6ef865 (patch) | |
tree | 91a13ed0374f2c6885633c58293706712ae1b856 /include | |
parent | 8a1c4b85303cd636f4920f99093063f57ecc8e73 (diff) | |
download | core-a970c8f1fc3baa890dbf872a444781b84d6ef865.tar.gz core-a970c8f1fc3baa890dbf872a444781b84d6ef865.tar.bz2 core-a970c8f1fc3baa890dbf872a444781b84d6ef865.zip |
Make libziparchive C++-only.
If we're going to build libziparchive with _FILE_OFFSET_BITS=64, which
seems like a reasonable idea, we don't want off_t/off64_t mixups in the
ABI, and C++ name mangling helps protect against that where C wouldn't.
Bug: N/A
Test: builds
Change-Id: I5f068b41fb4cd9e1e055e5250054318b35bcbc08
Diffstat (limited to 'include')
-rw-r--r-- | include/ziparchive/zip_archive.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/ziparchive/zip_archive.h b/include/ziparchive/zip_archive.h index 54946fc93..31fc2dfc9 100644 --- a/include/ziparchive/zip_archive.h +++ b/include/ziparchive/zip_archive.h @@ -26,8 +26,6 @@ #include <sys/types.h> #include <utils/Compat.h> -__BEGIN_DECLS - /* Zip compression methods we support */ enum { kCompressStored = 0, // no compression @@ -228,6 +226,4 @@ int32_t ProcessZipEntryContents(ZipArchiveHandle handle, ZipEntry* entry, ProcessZipEntryFunction func, void* cookie); #endif -__END_DECLS - #endif // LIBZIPARCHIVE_ZIPARCHIVE_H_ |