mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 10:32:15 +08:00
10 lines
164 B
C
10 lines
164 B
C
#include <bits/wordsize.h>
|
|
|
|
#if __WORDSIZE == 32
|
|
#include "curlbuild-32.h"
|
|
#elif __WORDSIZE == 64
|
|
#include "curlbuild-64.h"
|
|
#else
|
|
#error "Unknown word size"
|
|
#endif
|