mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-07 06:44:18 +00:00
12 lines
255 B
C
12 lines
255 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _XBC_LINUX_MEMBLOCK_H
|
|
#define _XBC_LINUX_MEMBLOCK_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
#define SMP_CACHE_BYTES 0
|
|
#define memblock_alloc(size, align) malloc(size)
|
|
#define memblock_free_ptr(paddr, size) free(paddr)
|
|
|
|
#endif
|