mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-03 00:00:07 +03:00
9 lines
215 B
C
9 lines
215 B
C
#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 */
|