mirror of
https://github.com/intel/linux-sgx
synced 2026-06-08 14:49:32 +00:00
cd8ea431c3
Signed-off-by: Zhang Lili <lili.z.zhang@intel.com>
7 lines
101 B
C
7 lines
101 B
C
#include <stdlib.h>
|
|
|
|
void *aligned_alloc(size_t align, size_t len)
|
|
{
|
|
return memalign(align, len);
|
|
}
|