Rizin
unix-like reverse engineering framework and cli tools
config.h
Go to the documentation of this file.
1 #ifndef HAVE_FORK
2 #define HAVE_FORK 1
3 #endif
4 
5 #if HAVE_FORK
6 # if TARGET_OS_IPHONE || APPLE_SDK_IPHONEOS || APPLE_SDK_IPHONESIMULATOR
7 # define HAVE_SYSTEM 0
8 # else
9 # define HAVE_SYSTEM 1
10 # endif
11 #else
12 # define HAVE_SYSTEM 0
13 #endif
14 
15 #if HAVE_SYSTEM
16 #include "p/sh.h"
17 #endif
18 
19 #include "p/spp.h"
20 #include "p/acr.h"
21 #include "p/pod.h"
22 #include "p/cpp.h"
23 
24 struct Proc *procs[] = {
25  &spp_proc,
26  &cpp_proc,
27  &pod_proc,
28  &acr_proc,
29 #if HAVE_SYSTEM
30  &sh_proc,
31 #endif
32  NULL
33 };
34 
35 DEFAULT_PROC(spp)
36 
37 #define DEBUG 0
DLL_LOCAL struct Proc acr_proc
Definition: acr.h:43
struct Proc * procs[]
Definition: config.h:24
DLL_LOCAL struct Proc cpp_proc
Definition: cpp.h:163
#define NULL
Definition: cris-opc.c:27
DLL_LOCAL struct Proc spp_proc
Definition: spp.h:451
DLL_LOCAL struct Proc pod_proc
Definition: pod.h:40
DLL_LOCAL struct Proc sh_proc
Definition: sh.h:80
#define DEFAULT_PROC(x)
Definition: spp.h:75
Definition: spp.h:128