m-un-2.c
来自「this is a gcc file, you can download it 」· C语言 代码 · 共 33 行
C
33 行
/* { dg-do compile } *//* { dg-options "-W -Wall" } */typedef unsigned long size_t;extern void* malloc (size_t);extern void free (void*);extern void* realloc (void*, size_t);struct vtable { void* (* _malloc) (size_t); void (* _free) (void*); void* (* _realloc) (void*, size_t);};struct vtable mtable = { malloc, free}; /* { dg-warning "missing initializer" "warning regression" { target *-*-* } {18} } */ /* { dg-warning "initialization for `mtable._realloc'" "warning regression" { target *-*-* } {18} } *//* With designated initializers, we assume you meant to leave out the initialization of any blank fields. */struct vtable mtable2 = { ._malloc = malloc, ._realloc = realloc};struct vtable mtable3 = { ._free = free, ._malloc = malloc, ._realloc = realloc};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?