summaryrefslogtreecommitdiff
path: root/libsparse/sparse_crc32.h
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 @@
* limitations under the License.
*/
-u32 sparse_crc32(u32 crc, const void *buf, size_t size);
+#include <stdint.h>
+
+uint32_t sparse_crc32(uint32_t crc, const void *buf, size_t size);