atomic.h
来自「基于LWVCL开发的库」· C头文件 代码 · 共 13 行
H
13 行
/* Wrapper file to include the right atomic.h file for ppc depending on the bit size. *//* this is imperfect possibly. On an old 64bit POWER/AIX system what happens ? */#if defined(__ppc__) || defined(__powerpc__) || defined(_POWER)#include "powerpc32/atomic.h"#elif defined(__ppc64__) || defined(__powerpc64__)#include "powerpc64/atomic.h"#else#error Huh, what is defined ?#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?