changeset 48 | b94d657a9acb |
parent 31 | c95a6a7e305c |
child 77 | 49e0babccb23 |
--- a/recursive_compiler.c +++ b/recursive_compiler.c @@ -3,8 +3,8 @@ * Adapted from: http://de.wikipedia.org/wiki/Compiler */ +#include <stdio.h> #include <stdlib.h> -#include <stdio.h> #include <string.h> #define MODE_POSTFIX 0 @@ -110,5 +110,5 @@ lookahead = *expression; expr (); - return 0; + return EXIT_SUCCESS; }