commit | 5d72bc404d053ea61e62f81d4058dec9d2bcf275 | [log] [tgz] |
---|---|---|
author | Kylie McClain <kylie@somasis.com> | Fri Sep 23 23:40:14 2016 -0400 |
committer | Quentin Glidic <sardemff7+git@sardemff7.net> | Sat Sep 24 11:55:58 2016 +0200 |
tree | 7b2315ca9d877a6f70cada8f0b63b9d73cf047a5 | |
parent | d8b17bc45277941c4a4a30fc5da3bc9a6145c3bb [diff] [blame] |
string-helpers.h: Fix usage on musl libc On musl, int32_t is defined in stdint.h. Signed-off-by: Kylie McClain <kylie@somasis.com> Reviewed-by: Yong Bakos <ybakos@humanoriented.com>
diff --git a/shared/string-helpers.h b/shared/string-helpers.h index 5dc75d6..c8ce449 100644 --- a/shared/string-helpers.h +++ b/shared/string-helpers.h
@@ -28,6 +28,7 @@ #include <stdbool.h> #include <stdlib.h> +#include <stdint.h> #include <errno.h> #include <assert.h>