mirror of
https://github.com/wassname/ray.git
synced 2026-07-06 01:41:58 +08:00
7907992609
* task queue tests and extensions * event loop refactor * fix formating
17 lines
201 B
C
17 lines
201 B
C
#ifndef _ZMALLOC_H
|
|
#define _ZMALLOC_H
|
|
|
|
#ifndef zmalloc
|
|
#define zmalloc malloc
|
|
#endif
|
|
|
|
#ifndef zfree
|
|
#define zfree free
|
|
#endif
|
|
|
|
#ifndef zrealloc
|
|
#define zrealloc realloc
|
|
#endif
|
|
|
|
#endif /* _ZMALLOC_H */
|