apio
d00ca0d3ed
All checks were successful
continuous-integration/drone/push Build is passing
Partially taken from pre-rewrite Luna, converted setjmp.asm to GNU assembly.
14 lines
217 B
C
14 lines
217 B
C
/* bits/platform.h: Platform defines. */
|
|
|
|
#ifndef _BITS_PLATFORM_H
|
|
#define _BITS_PLATFORM_H
|
|
|
|
#if defined(__x86_64__)
|
|
#define __libc_arch_x86_64
|
|
#define __libc_arch_x86
|
|
#else
|
|
#define __libc_arch_unknown
|
|
#endif
|
|
|
|
#endif
|