blob: 07f74067e4f816623814b3d247ceb2f5ebf3803b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#if defined(__arm__)
#include "fcntl_arm.h"
#elif defined(__aarch64__)
#include "fcntl_arm64.h"
#elif defined(__powerpc__)
#include "fcntl_powerpc.h"
#elif defined(__i386__) || defined(__x86_64__)
#include "fcntl_x86.h"
#else
#error unexpected
#endif
|