]> Git Repo - linux.git/blob - tools/include/linux/zalloc.h
md/raid1: only allocate write behind bio for WriteMostly device
[linux.git] / tools / include / linux / zalloc.h
1 // SPDX-License-Identifier: LGPL-2.1
2 #ifndef __TOOLS_LINUX_ZALLOC_H
3 #define __TOOLS_LINUX_ZALLOC_H
4
5 #include <stddef.h>
6
7 void *zalloc(size_t size);
8 void __zfree(void **ptr);
9
10 #define zfree(ptr) __zfree((void **)(ptr))
11
12 #endif // __TOOLS_LINUX_ZALLOC_H
This page took 0.03464 seconds and 4 git commands to generate.