BSD 2 development
[unix-history] / src / pi1 / yyerror.c
CommitLineData
16494185
BJ
1/* Copyright (c) 1979 Regents of the University of California */
2#
3/*
4 * pi - Pascal interpreter code translator
5 *
6 * Charles Haley, Bill Joy UCB
7 * Version 1.2 January 1979
8 */
9
10#include "0.h"
11
12yerror(s, a1, a2)
13 char *s;
14{
15
16 error(s, a1, a2);
17}