more tricky kr things
authorMatthias Braun <matze@braunis.de>
Mon, 2 Jun 2008 14:09:50 +0000 (14:09 +0000)
committerMatthias Braun <matze@braunis.de>
Mon, 2 Jun 2008 14:09:50 +0000 (14:09 +0000)
[r19934]

parsetest/kr2.c [new file with mode: 0644]

diff --git a/parsetest/kr2.c b/parsetest/kr2.c
new file mode 100644 (file)
index 0000000..8dad25a
--- /dev/null
@@ -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;
+}