在别的地方, 宏 __ 被定义为类似下面的代码:
#ifdef __STDC__ #define __(proto) proto #else #define __(proto) () #endif
原型说明中额外的括号是为了让原型列表被当作宏的单一参数。