15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#import "runtime.h"
#import "runtime-private.h"
#import "macros.h"
static IMP not_found_handler(id, SEL);
IMP (*objc_forward_handler)(id, SEL) = not_found_handler;
static IMP
|
|
|
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#import "runtime.h"
#import "runtime-private.h"
#import "macros.h"
static IMP not_found_handler(id, SEL);
IMP (*objc_forward_handler)(id, SEL) = not_found_handler;
static IMP
|