File: yyerror.c

package info (click to toggle)
perl-byacc 2.0-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 716 kB
  • sloc: ansic: 7,136; yacc: 2,035; perl: 1,779; makefile: 206; sh: 9
file content (12 lines) | stat: -rw-r--r-- 156 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>

#if __STDC__
void yyerror(char *msg)
#else
void yyerror(msg)
char *msg;
#endif
{
    (void) fprintf(stderr, "%s\n", msg);
    return;
}