65,209
社区成员
发帖
与我相关
我的任务
分享
static void (* __malloc_alloc_oom_handler)();
static void (* __set_malloc_handler(void (*__f)()))() //这句函数原型
{
void (* __old)() = __malloc_alloc_oom_handler;
__malloc_alloc_oom_handler = __f;
return(__old);
}
typedef void (*FUN_PTR)();
static FUN_PTR __set_malloc_handler(FUN_PTR)