h2-simd-support #6

Merged
Mineplay merged 3 commits from h2-simd-support into main 2025-04-13 09:07:46 -05:00
4 changed files with 3 additions and 3 deletions
Showing only changes of commit c091d0dcc4 - Show all commits

View file

@ -26,7 +26,7 @@
#include <stddef.h> #include <stddef.h>
#include <stdbool.h> #include <stdbool.h>
#include "Error.h" #include "../Utils/Error.h"
void *hallocy_malloc(size_t size); void *hallocy_malloc(size_t size);
HallocyError hallocy_free(void *pointer); HallocyError hallocy_free(void *pointer);

View file

@ -20,7 +20,7 @@
* Author: Mineplay * Author: Mineplay
* ----------------------------------------------------------------------------- * -----------------------------------------------------------------------------
*/ */
#include "../Include/Hallocy/Allocator.h" #include "../../Include/Hallocy/Core/Allocator.h"
#if defined(_WIN32) #if defined(_WIN32)
#include <windows.h> #include <windows.h>

View file

@ -20,7 +20,7 @@
* ----------------------------------------------------------------------------- * -----------------------------------------------------------------------------
*/ */
#include <stdio.h> #include <stdio.h>
#include <Hallocy/Allocator.h> #include <Hallocy/Core/Allocator.h>
int main() { int main() {
char *memory = (char *)hallocy_malloc(12288); char *memory = (char *)hallocy_malloc(12288);