mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-22 12:01:27 +00:00
10 lines
163 B
C
10 lines
163 B
C
|
|
#pragma once
|
|
|
|
#if defined(__x86_64__)
|
|
# include "x86_64/ffi.h"
|
|
#elif defined(__aarch64__)
|
|
# include "arm64/ffi.h"
|
|
#else
|
|
# error Unknown architecture
|
|
#endif
|