mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 12:03:41 +00:00
14 lines
521 B
C
14 lines
521 B
C
|
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_AUDIT_H_
|
||
|
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_AUDIT_H_
|
||
|
#include "libc/elf/def.h"
|
||
|
|
||
|
#define __AUDIT_ARCH_64BIT 0x80000000
|
||
|
#define __AUDIT_ARCH_LE 0x40000000
|
||
|
#define __AUDIT_ARCH_CONVENTION_MASK 0x30000000
|
||
|
#define __AUDIT_ARCH_CONVENTION_MIPS64_N32 0x20000000
|
||
|
|
||
|
#define AUDIT_ARCH_X86_64 (EM_X86_64 | __AUDIT_ARCH_64BIT | __AUDIT_ARCH_LE)
|
||
|
#define AUDIT_ARCH_I386 (EM_386 | __AUDIT_ARCH_LE)
|
||
|
|
||
|
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_AUDIT_H_ */
|