do post-order visit if FTS_SKIP or FTS_XDEV apply to preorder visit
[unix-history] / usr / src / lib / liby / main.c
CommitLineData
79abd9e9
KB
1/*-
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * %sccs.include.redist.c%
1f385690
KM
6 */
7
8#ifndef lint
79abd9e9
KB
9static char sccsid[] = "@(#)main.c 5.2 (Berkeley) %G%";
10#endif /* not lint */
1f385690
KM
11
12main()
13{
79abd9e9 14 extern yyparse();
1f385690 15
79abd9e9
KB
16 (void)yyparse();
17 return(0);
1f385690 18}