about summary refs log tree commit diff
path: root/frida_mode/include/shm.h
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2022-08-06 09:02:02 +0200
committerGitHub <noreply@github.com>2022-08-06 09:02:02 +0200
commit94fe62ad8db938757a3052f2041aef390e19c9a1 (patch)
treeff645a8bd0a5d81e3f6f825efebf87845b463436 /frida_mode/include/shm.h
parent4b9c560b07e1ea42633b59e0eb94f7a3f0fe0c58 (diff)
parent608ea5f8abbfce9c309d452e2ee3dbb014dc511a (diff)
downloadafl++-94fe62ad8db938757a3052f2041aef390e19c9a1.tar.gz
Merge pull request #1467 from WorksButNotTested/droid
Android Fixes
Diffstat (limited to 'frida_mode/include/shm.h')
-rw-r--r--frida_mode/include/shm.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/frida_mode/include/shm.h b/frida_mode/include/shm.h
new file mode 100644
index 00000000..8338ccba
--- /dev/null
+++ b/frida_mode/include/shm.h
@@ -0,0 +1,9 @@
+#ifndef _SHM_H
+#define _SHM_H
+
+#include <stddef.h>
+
+void *shm_create(size_t size);
+
+#endif
+