blob: 87544ba343876158423d65b040f1dc85cbe09598 [file] [log] [blame]
#pragma once
#include <stdint.h>
#include <stddef.h>
#include <dasm_proto.h>
/* Platform specific definitions */
// Must return an address aligned to 8 bytes
void *malloc_aligned (size_t size);
void *realloc_aligned (void *addr, size_t size);
void free_aligned (void *addr);
void *link (dasm_State **Dst);