blob: f10676c016bdf7cdd5ce0576eb6d67a17a18f4d3 [file] [log] [blame]
#pragma once
#include <dasm_proto.h>
#include <stddef.h>
#include <stdint.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);