mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-08 06:44:27 +00:00
17 lines
200 B
C
Vendored
17 lines
200 B
C
Vendored
#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
|