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