#include <stddef.h> static const int BUFSIZE = 1024; char sg_buffer [BUFSIZE]; int main () { }
Standard input is empty
prog.c:4:6: error: variably modified ‘sg_buffer’ at file scope
char sg_buffer [BUFSIZE];
^
prog.c: In function ‘main’:
prog.c:8:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
Standard output is empty