diff options
Diffstat (limited to 'bcsh.c')
-rw-r--r-- | bcsh.c | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -0,0 +1,10 @@ | |||
1 | #include "cmd.h" | ||
2 | |||
3 | extern int yyparse(); | ||
4 | |||
5 | int main(int argc, char **argv) { | ||
6 | while (true) { | ||
7 | yyparse(); | ||
8 | } | ||
9 | return 0; | ||
10 | } \ No newline at end of file | ||