uae-wii/src/od-win32/memory.c
2009-05-05 15:36:48 +00:00

30 lines
378 B
C

/*
* UAE - The Un*x Amiga Emulator
*
* OS-specific memory support functions
*
* Copyright 2004 Richard Drummond
*/
#include "sysconfig.h"
#include "sysdeps.h"
#include "memory.h"
#ifdef JIT
/*
* Allocate executable memory for JIT cache
*/
void *cache_alloc (int size)
{
return malloc (size);
}
void cache_free (void *cache)
{
free (cache);
}
#endif