inline-23.c

来自「用于进行gcc测试」· C语言 代码 · 共 19 行

C
19
字号
/* { dg-do compile } *//* { dg-options "-std=gnu89" } *//* Make sure we can inline a varargs function whose variable arguments   are not used.  See PR32493.  */#include <stddef.h>static inline __attribute__((always_inline)) void __check_printsym_format(constchar *fmt, ...){}static inline __attribute__((always_inline)) void print_symbol(const char *fmt,ptrdiff_t addr){ __check_printsym_format(fmt, "");}void do_initcalls(void **call){   print_symbol(": %s()", (ptrdiff_t) *call);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?