summaryrefslogtreecommitdiff
path: root/frontends/amiga/memory.c
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2016-11-19 21:55:15 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2016-11-19 21:55:15 +0000
commiteab6c0c99e29e10a3ac409b8de7c0e39ef918358 (patch)
tree7411a9e07adfb98dd03df5cac60209925b6230a7 /frontends/amiga/memory.c
parent15a68714919c64edc04d6e26679fabb490bdf9a2 (diff)
downloadnetsurf-eab6c0c99e29e10a3ac409b8de7c0e39ef918358.tar.gz
netsurf-eab6c0c99e29e10a3ac409b8de7c0e39ef918358.tar.bz2
remove ami_misc_allocvec_clear
Diffstat (limited to 'frontends/amiga/memory.c')
-rwxr-xr-xfrontends/amiga/memory.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/frontends/amiga/memory.c b/frontends/amiga/memory.c
index 567f4f5c9..7a34f7abd 100755
--- a/frontends/amiga/memory.c
+++ b/frontends/amiga/memory.c
@@ -47,17 +47,6 @@ void ami_memory_clear_free(void *p)
#endif
}
-void *ami_misc_allocvec_clear(int size, UBYTE value)
-{
-#ifdef __amigaos4__
- return AllocVecTags(size, AVT_ClearWithValue, value, TAG_DONE);
-#else
- void *mem = AllocVec(size, MEMF_ANY);
- if (mem) memset(mem, value, size);
- return mem;
-#endif
-}
-
APTR ami_misc_itempool_create(int size)
{
#ifdef __amigaos4__