BDK: types: add stdint header

On Fedora 35 - aarch64 using the provided arm compiler toolchain from redhat repository, build fails due to missing `<stdint.h>` header causing missing types such as `uintptr_t`
This commit is contained in:
The Great Wizard Azkali 2021-11-30 16:17:43 +01:00 committed by GitHub
parent 01b6e645b3
commit 8192100350
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,6 +19,7 @@
#define _TYPES_H_
#include <assert.h>
#include <stdint.h>
/* Types */
typedef signed char s8;