summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'libsparse/sparse_crc32.h')
-rw-r--r--libsparse/sparse_crc32.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libsparse/sparse_crc32.h b/libsparse/sparse_crc32.h
index 21625bac9..cad8a8630 100644
--- a/libsparse/sparse_crc32.h
+++ b/libsparse/sparse_crc32.h
@@ -14,5 +14,7 @@
14 * limitations under the License. 14 * limitations under the License.
15 */ 15 */
16 16
17u32 sparse_crc32(u32 crc, const void *buf, size_t size); 17#include <stdint.h>
18
19uint32_t sparse_crc32(uint32_t crc, const void *buf, size_t size);
18 20