blob: 21b991361c7545bb6b7d60cd563f0f4bc1312f10 [file] [log] [blame]
#include <malloc.h>
#include <stdlib.h>
#include <errno.h>
#include "compiler/compiler.h"
int __weak posix_memalign(void **ptr, size_t align, size_t size)
{
*ptr = memalign(align, size);
if (*ptr)
return 0;
return ENOMEM;
}
int __weak posix_fallocate(int fd, off_t offset, off_t len)
{
return 0;
}