summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/psx/dismips.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/psx/dismips.cpp')
-rw-r--r--src/devices/cpu/psx/dismips.cpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/devices/cpu/psx/dismips.cpp b/src/devices/cpu/psx/dismips.cpp
index bfbc3428c94..09b14d9d06b 100644
--- a/src/devices/cpu/psx/dismips.cpp
+++ b/src/devices/cpu/psx/dismips.cpp
@@ -331,31 +331,3 @@ int main( int argc, char *argv[] )
free (filebuf);
return 0;
}
-
-void *osd_malloc_array(size_t size)
-{
- return osd_malloc(size);
-}
-
-void *malloc_array_file_line(size_t size, const char *file, int line)
-{
- // allocate the memory and fail if we can't
- return osd_malloc_array(size);
-}
-
-void free_file_line( void *memory, const char *file, int line )
-{
- osd_free( memory );
-}
-
-void osd_free( void *memory )
-{
-#undef free
- free( memory );
-}
-
-void *osd_malloc( size_t size )
-{
-#undef malloc
- return malloc( size );
-}