From: Matthias Braun Date: Mon, 2 Jun 2008 14:09:50 +0000 (+0000) Subject: more tricky kr things X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=fc38f915dc3e39bb6064c2a6c91d1dd942d77f57;p=cparser more tricky kr things [r19934] --- diff --git a/parsetest/kr2.c b/parsetest/kr2.c new file mode 100644 index 0000000..8dad25a --- /dev/null +++ b/parsetest/kr2.c @@ -0,0 +1,18 @@ +int printf(const char *str, ...); + +int a(int first, float second, const char *third); + +int main(void) +{ + a(42, 42.42, "What is 6 times 9?\n"); + return 0; +} + +int a(first, second, third) + float second; + const char *third; + int first; +{ + printf("Args: %d %f %s\n", first, second, third); + return 0; +}