65,187
社区成员




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)