1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-29 08:08:37 +00:00

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:
Dimitry Andric 2019-09-13 21:00:19 +00:00
parent dd69e7dc14
commit 7b01d357a2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=352306

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.