test-c99.c

text/plain

Filename: test-c99.c
Type: text/plain
Part: 0
Message: Windows vs C99 (was Re: C99 compliance for src/port/snprintf.c)
struct foo
{
	int a;
	int b;
};

struct foo f = {
	.a = 1,
	.b = 2,
};

int
bar()
{
	int x;

	x = 1;

	int y;

	y = 2;

	for (int i = 0; i < 5; i++)
		;

	return 0;
}