mirror of
https://github.com/openbsd/src.git
synced 2025-01-10 06:47:55 -08:00
ANSIfy grammar.y on atc(6), all other files already are
OK tb@
This commit is contained in:
parent
7b9723b34f
commit
a685fffcd5
@ -1,4 +1,4 @@
|
||||
/* $OpenBSD: grammar.y,v 1.9 2016/01/08 13:40:05 tb Exp $ */
|
||||
/* $OpenBSD: grammar.y,v 1.10 2016/01/09 19:27:56 mestre Exp $ */
|
||||
/* $NetBSD: grammar.y,v 1.3 1995/03/21 15:03:59 cgd Exp $ */
|
||||
|
||||
/*-
|
||||
@ -264,8 +264,7 @@ Lline:
|
||||
%%
|
||||
|
||||
void
|
||||
check_edge(x, y)
|
||||
int x, y;
|
||||
check_edge(int x, int y)
|
||||
{
|
||||
if (!(x == 0) && !(x == sp->width - 1) &&
|
||||
!(y == 0) && !(y == sp->height - 1))
|
||||
@ -273,8 +272,7 @@ check_edge(x, y)
|
||||
}
|
||||
|
||||
void
|
||||
check_point(x, y)
|
||||
int x, y;
|
||||
check_point(int x, int y)
|
||||
{
|
||||
if (x < 1 || x >= sp->width - 1)
|
||||
yyerror("X value out of range.");
|
||||
@ -283,8 +281,7 @@ check_point(x, y)
|
||||
}
|
||||
|
||||
void
|
||||
check_linepoint(x, y)
|
||||
int x, y;
|
||||
check_linepoint(int x, int y)
|
||||
{
|
||||
if (x < 0 || x >= sp->width)
|
||||
yyerror("X value out of range.");
|
||||
@ -293,8 +290,7 @@ check_linepoint(x, y)
|
||||
}
|
||||
|
||||
void
|
||||
check_line(x1, y1, x2, y2)
|
||||
int x1, y1, x2, y2;
|
||||
check_line(int x1, int y1, int x2, int y2)
|
||||
{
|
||||
int d1, d2;
|
||||
|
||||
@ -309,8 +305,7 @@ check_line(x1, y1, x2, y2)
|
||||
}
|
||||
|
||||
int
|
||||
yyerror(s)
|
||||
const char *s;
|
||||
yyerror(const char *s)
|
||||
{
|
||||
fprintf(stderr, "\"%s\": line %d: %s\n", file, line, s);
|
||||
errors++;
|
||||
@ -319,8 +314,7 @@ yyerror(s)
|
||||
}
|
||||
|
||||
void
|
||||
check_edir(x, y, dir)
|
||||
int x, y, dir;
|
||||
check_edir(int x, int y, int dir)
|
||||
{
|
||||
int bad = 0;
|
||||
|
||||
@ -352,8 +346,7 @@ check_edir(x, y, dir)
|
||||
}
|
||||
|
||||
void
|
||||
check_adir(x, y, dir)
|
||||
int x, y, dir;
|
||||
check_adir(int x, int y, int dir)
|
||||
{
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user