Include <stdint.h> in unwind-arm.h, since it uses uint32_t and uint64_t

in various declarations.

Otherwise, depending on how unwind-arm.h is included from other source
files, the compiler may complain that uint32_t and uint64_t are unknown
types.

MFC after:	3 days
This commit is contained in:
dim 2019-09-13 21:00:19 +00:00
parent 24b49a6e5f
commit 40f6431286

View File

@ -20,6 +20,9 @@
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
/* For uint32_t and uint64_t */
#include <stdint.h>
/**
* ARM-specific unwind definitions. These are taken from the ARM EHABI
* specification.