about summary refs log tree commit diff stats
path: root/src/include/auxval.h
blob: ecbdf55075b577b3e32f4c3b66df085e6e35af6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef __AUXVAL_H__
#define __AUXVAL_H__

typedef struct x64emu_s x64emu_t;

#ifndef BUILD_LIB
int init_auxval(int argc, const char **argv, char **env);
#endif

unsigned long real_getauxval(unsigned long type);
unsigned long my_getauxval(x64emu_t* emu, unsigned long type);

#endif //__AUXVAL_H__