Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Add <stddef.h> for size_t non compliant example

...

Code Block
bgColor#FFCCCC
langc
#include <stddef.h>
 
void func(size_t size) {
  int vla[size];
  /* ... */
}

...