LibC: Add sys/auxv.h with getauxval

This commit is contained in:
2026-07-01 12:58:09 +03:00
parent 74e94eedae
commit c0d38862f2
6 changed files with 70 additions and 24 deletions

View File

@@ -0,0 +1,14 @@
#ifndef _SYS_AUXV_H
#define _SYS_AUXV_H 1
#include <sys/cdefs.h>
__BEGIN_DECLS
#include <elf.h>
unsigned long getauxval(unsigned long type);
__END_DECLS
#endif