also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging
17 lines
199 B
C
17 lines
199 B
C
#ifndef _SYS_AUXV_H
|
|
#define _SYS_AUXV_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <elf.h>
|
|
#include <bits/hwcap.h>
|
|
|
|
unsigned long getauxval(unsigned long);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |