do post-order visit if FTS_SKIP or FTS_XDEV apply to preorder visit
[unix-history] / usr / src / lib / liby / yyerror.c
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
*
* %sccs.include.redist.c%
*/
#ifndef lint
static char sccsid[] = "@(#)yyerror.c 5.2 (Berkeley) %G%";
#endif /* not lint */
#include <stdio.h>
yyerror(msg)
char *msg;
{
(void)fprintf(stderr, "%s\n", msg);
return(0);
}