Skip to content

Commit

Permalink
v5.0.0 compatiability
Browse files Browse the repository at this point in the history
  • Loading branch information
SkillfulElectro authored Sep 8, 2024
1 parent a08ffe9 commit 66dd8b4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions examples/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ int main() {



// Initialize data
uint32_t example_data[60000];
uint32_t example_data0[60000];

uint32_t* example_data = (uint32_t*)malloc(sizeof(uint32_t)*60000);
uint32_t* example_data0 = (uint32_t*)malloc(sizeof(uint32_t)*60000);


for (int i = 0; i < 60000; ++i) {
example_data[i] = 1;
Expand Down

0 comments on commit 66dd8b4

Please sign in to comment.