about summary refs log tree commit diff stats
path: root/src/include
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-03-02 10:51:27 +0100
committerptitSeb <sebastien.chev@gmail.com>2021-03-02 10:51:27 +0100
commitbe92787329b59cf0f2202ca7623055372df0d90f (patch)
tree0f446cd46ffe2299926d8ccc971d95dfaacd9b18 /src/include
parent26201d7e705714cd8ecca3fa28f51e819f9eb520 (diff)
downloadbox64-be92787329b59cf0f2202ca7623055372df0d90f.tar.gz
box64-be92787329b59cf0f2202ca7623055372df0d90f.zip
Preparing auxval handling
Diffstat (limited to 'src/include')
-rwxr-xr-xsrc/include/auxval.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/include/auxval.h b/src/include/auxval.h
new file mode 100755
index 00000000..6688d78f
--- /dev/null
+++ b/src/include/auxval.h
@@ -0,0 +1,13 @@
+#ifndef __AUXVAL_H__
+#define __AUXVAL_H__
+
+typedef struct x64emu_s x64emu_t;
+
+#ifndef BUILD_LIB
+int init_auxval(int argc, const char **argv, const char **env);
+#endif
+
+unsigned long real_getauxval(unsigned long type);
+//unsigned long my_getauxval(x64emu_t* emu, unsigned long type);
+
+#endif //__AUXVAL_H__
\ No newline at end of file