mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-29 03:57:08 +03:00
66d97267c7
This excludes all headers in /usr/include/dev because that directory is bonkers huge (18M). We can add these on an as-needed basis.
17 lines
342 B
C
Vendored
17 lines
342 B
C
Vendored
/* $OpenBSD: exec.h,v 1.7 2017/02/08 05:09:25 guenther Exp $ */
|
|
/*
|
|
* Written by Artur Grabowski <art@openbsd.org> Public Domain
|
|
*/
|
|
|
|
#ifndef _MACHINE_EXEC_H_
|
|
#define _MACHINE_EXEC_H_
|
|
|
|
#define __LDPGSZ 4096
|
|
|
|
#define ARCH_ELFSIZE 64
|
|
|
|
#define ELF_TARG_CLASS ELFCLASS64
|
|
#define ELF_TARG_DATA ELFDATA2LSB
|
|
#define ELF_TARG_MACH EM_AMD64
|
|
|
|
#endif |