changeset 48 | b94d657a9acb |
parent 38 | 48f6f3918b82 |
child 77 | 49e0babccb23 |
47:63adb261de90 | 48:b94d657a9acb |
---|---|
2 * test/demos/parser/calc/main.c |
2 * test/demos/parser/calc/main.c |
3 * Copyright (C) 2008 Markus Broeker |
3 * Copyright (C) 2008 Markus Broeker |
4 */ |
4 */ |
5 |
5 |
6 #include <stdio.h> |
6 #include <stdio.h> |
7 #include <stdlib.h> |
|
7 |
8 |
8 extern int yyparse (); |
9 extern int yyparse (); |
9 |
10 |
10 int main (int argc, char **argv) |
11 int main (int argc, char **argv) |
11 { |
12 { |
12 yyparse (); |
13 yyparse (); |
13 return 0; |
14 |
15 return EXIT_SUCCESS; |
|
14 } |
16 } |