first.c
来自「很好用的内存泄漏检测工具。要配合linux的gcc使用,安装后将你的编译器gcc」· C语言 代码 · 共 19 行
C
19 行
/* This file and the rest of YAMD is copyright (C) 1999 by Nate Eldredge. *//* There is no warranty whatever; I disclaim responsibility for any *//* damage caused. Released under the GNU General Public License (see the *//* file COPYING). *//* This is linked first on the command line. */extern void __yamd_maybe_startup(void);extern void __yamd_maybe_finish(void);/* Make sure this module is linked. */int __yamd_hook_2 asm ("__yamd_hook_2") = 0;static void construct(void) __attribute__((constructor));static void construct(void) { __yamd_maybe_startup(); }static void destruct(void) __attribute__((destructor));static void destruct(void) { __yamd_maybe_finish(); }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?