mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-14 16:31:30 +00:00
10 lines
175 B
C
10 lines
175 B
C
|
|
#pragma once
|
|
|
|
#if defined(__x86_64__)
|
|
# include "_aedi_x86_64_ffi.h"
|
|
#elif defined(__aarch64__)
|
|
# include "_aedi_arm64_ffi.h"
|
|
#else
|
|
# error Unknown architecture
|
|
#endif
|