File: yymain.c

package info (click to toggle)
perl-byacc 2.0-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 580 kB
  • ctags: 822
  • sloc: ansic: 7,129; yacc: 2,035; perl: 1,779; makefile: 202; sh: 8
file content (19 lines) | stat: -rw-r--r-- 247 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#if __STDC__
#include <stdlib.h>

int main(int argc, char *argv[])
#else
int main(argc, argv)
int argc;
char *argv[];
#endif
{
#if __STDC__
    extern int yyparse(void);
#else
    extern int yyparse();
#endif

    (void) yyparse();
    exit(0);
}