文件
Paze-C-CPP-Compiler/tests/tests2/128_run_atexit.c
T
Paze AI 251ee470bf feat: Paze C Compiler - 完整改造自 tcc 0.9.28rc
- 所有 tcc 文件/内容/宏改名为 pcc (tcc.c->pcc.c, tccelf.c->pccelf.c, libtcc.c->libpcc.c 等)
- 支持架构: i386, x86_64, ARM, ARM64, RISC-V, C67
- 支持格式: PE, ELF, Mach-O, COFF
- 完整预处理、代码生成、链接器、调试信息
- 构建成功: pcc.exe (x86_64 Windows)
- 功能测试通过: 递归/结构体/浮点/switch/循环
- 自编译测试通过: pcc 可以编译自身
2026-08-16 13:30:01 +08:00

60 行
904 B
C

#include <stdio.h>
int atexit(void (*function)(void));
int on_exit(void (*function)(int, void *), void *arg);
void exit(int status);
void __attribute((constructor)) startup5(void)
{
printf ("startup5\n");
}
void cleanup1(void)
{
printf ("cleanup1\n");
fflush(stdout);
}
void cleanup2(void)
{
printf ("cleanup2\n");
}
void cleanup3(int ret, void *arg)
{
printf ("%d %s\n", ret, (char *) arg);
}
void cleanup4(int ret, void *arg)
{
printf ("%d %s\n", ret, (char *) arg);
}
void __attribute((destructor)) cleanup5(void)
{
printf ("cleanup5\n");
}
void test(void)
{
atexit(cleanup1);
atexit(cleanup2);
on_exit(cleanup3, "cleanup3");
on_exit(cleanup4, "cleanup4");
}
#if defined test_128_return
int main(int argc, char **argv)
{
test();
return 1;
}
#elif defined test_128_exit
int main(int argc, char **argv)
{
test();
exit(2);
}
#endif