From fc38f915dc3e39bb6064c2a6c91d1dd942d77f57 Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Mon, 2 Jun 2008 14:09:50 +0000 Subject: [PATCH] more tricky kr things [r19934] --- parsetest/kr2.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 parsetest/kr2.c 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; +} -- 2.20.1