mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-06 13:18:20 +00:00
23 lines
282 B
C
23 lines
282 B
C
#if !TARGET_OS_IPHONE
|
|
#include "p/sh.h"
|
|
#endif
|
|
#include "p/spp.h"
|
|
#include "p/acr.h"
|
|
#include "p/pod.h"
|
|
#include "p/cpp.h"
|
|
|
|
struct Proc *procs[] = {
|
|
&spp_proc,
|
|
&cpp_proc,
|
|
&pod_proc,
|
|
&acr_proc,
|
|
#if !TARGET_OS_IPHONE
|
|
&sh_proc,
|
|
#endif
|
|
NULL
|
|
};
|
|
|
|
DEFAULT_PROC(spp)
|
|
|
|
#define DEBUG 0
|