mirror of git://git.musl-libc.org/musl
17 lines
176 B
C
17 lines
176 B
C
|
#ifndef _SYS_AUXV_H
|
||
|
#define _SYS_AUXV_H
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include <elf.h>
|
||
|
|
||
|
unsigned long getauxval(unsigned long);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|