bcachefs-tools/include/linux/vmalloc.h

9 lines
215 B
C
Raw Normal View History

2017-01-08 12:13:18 +03:00
#ifndef __TOOLS_LINUX_VMALLOC_H
#define __TOOLS_LINUX_VMALLOC_H
#define vmalloc(size) malloc(size)
#define __vmalloc(size, flags, prot) malloc(size)
#define vfree(p) free(p)
#endif /* __TOOLS_LINUX_VMALLOC_H */