mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-11-30 10:57:34 +08:00
9697f95b8f
This reverts commit 15d999759e
.
19 lines
260 B
C
19 lines
260 B
C
#include "lib_acl.h"
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "mem_gc.h"
|
|
#include "mem_test.h"
|
|
|
|
static void init(void)
|
|
{
|
|
mem_gc_hook();
|
|
}
|
|
|
|
int main(int argc acl_unused, char *argv[] acl_unused)
|
|
{
|
|
init();
|
|
mem_test();
|
|
return (0);
|
|
}
|
|
|