am 58cfceb8: am 75b3f8c9: am 87101256: Merge "libsparse: Wrap sparse_crc32.h to be C++ compatible."

* commit '58cfceb88b2c436b61129cedefaa8e15758606f8':
  libsparse: Wrap sparse_crc32.h to be C++ compatible.
This commit is contained in:
Tao Bao 2015-07-11 22:23:45 +00:00 committed by Android Git Automerger
commit b981b3885d

View file

@ -14,7 +14,19 @@
* limitations under the License.
*/
#ifndef _LIBSPARSE_SPARSE_CRC32_H_
#define _LIBSPARSE_SPARSE_CRC32_H_
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
uint32_t sparse_crc32(uint32_t crc, const void *buf, size_t size);
#ifdef __cplusplus
}
#endif
#endif