This commit is contained in:
Jason Storey 2023-05-08 11:12:07 -07:00 committed by GitHub
commit 9d5ab0ba9e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View file

@ -20,6 +20,10 @@
#include <utils/types.h> #include <utils/types.h>
#ifdef __arm64__
#include <stdint.h>
#endif
typedef enum typedef enum
{ {
DRAM_LIB = 0, // DRAM library. DRAM_LIB = 0, // DRAM library.

View file

@ -17,6 +17,10 @@ extern "C" {
#include <string.h> #include <string.h>
#include <utils/types.h> #include <utils/types.h>
#ifdef __arm64__
#include <stdint.h>
#endif
/********************* /*********************
* DEFINES * DEFINES
*********************/ *********************/