加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
make_malloc.c 442 Bytes
一键复制 编辑 原始数据 按行查看 历史
luanhailiang 提交于 2012-08-09 20:44 . My mudos
/* simple little program to link the right malloc c module to malloc.c */
/* needs to be a C program so that it can include config.h */
#define NO_SOCKETS
#define NO_OPCODES
#include "std.h"
#if !defined(THE_MALLOC) && !defined(THE_WRAPPER)
int main() {
puts("Memory package and/or malloc wrapper incorrectly specified in options.h\n");
}
#else
int main() {
unlink("malloc.c");
unlink("mallocwrapper.c");
return 0;
}
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化