yaffs direct: Change yaffs_malloc to yaffsfs_malloc etc
[yaffs2.git] / direct / basic-test / yaffs_osglue.c
index 6e8870b1780dc52aa669ef54cffe8b66e8783ccf..7eaafc933eaf0194aeaad86d17bdf809d2cae202 100644 (file)
@@ -83,7 +83,7 @@ static int yaffs_kill_alloc = 0;
 static size_t total_malloced = 0;
 static size_t malloc_limit = 0 & 6000000;
 
-void *yaffs_malloc(size_t size)
+void *yaffsfs_malloc(size_t size)
 {
        void * this;
        if(yaffs_kill_alloc)
@@ -97,7 +97,7 @@ void *yaffs_malloc(size_t size)
        return this;
 }
 
-void yaffs_free(void *ptr)
+void yaffsfs_free(void *ptr)
 {
        free(ptr);
 }