mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-11-30 19:07:35 +08:00
9 lines
139 B
C
9 lines
139 B
C
#ifndef ALLOC_H
|
|
#define ALLOC_H
|
|
|
|
extern /*@null@*//*@out@*/char *alloc();
|
|
extern void alloc_free();
|
|
extern int alloc_re();
|
|
|
|
#endif
|