summaryrefslogtreecommitdiffstats
path: root/atc
diff options
context:
space:
mode:
authorhubertf <hubertf@NetBSD.org>1999-07-26 21:14:21 +0000
committerhubertf <hubertf@NetBSD.org>1999-07-26 21:14:21 +0000
commitce9197ac9b1e7a0c93e6b4a80f36e95b7f5a0fce (patch)
treeaff85fc8dae11aa5feff35a2b4f7f336ecc4ce06 /atc
parentf8e5a55fcd64d3930e27c7729a7fa6a09bdc8fa9 (diff)
downloadbsdgames-darwin-ce9197ac9b1e7a0c93e6b4a80f36e95b7f5a0fce.tar.gz
bsdgames-darwin-ce9197ac9b1e7a0c93e6b4a80f36e95b7f5a0fce.tar.zst
bsdgames-darwin-ce9197ac9b1e7a0c93e6b4a80f36e95b7f5a0fce.zip
Remove empty functin check_adir() and references to it.
Diffstat (limited to 'atc')
-rw-r--r--atc/grammar.y11
1 files changed, 2 insertions, 9 deletions
diff --git a/atc/grammar.y b/atc/grammar.y
index 4f32ddf2..770683a0 100644
--- a/atc/grammar.y
+++ b/atc/grammar.y
@@ -1,4 +1,4 @@
-/* $NetBSD: grammar.y,v 1.6 1999/07/25 00:24:38 hubertf Exp $ */
+/* $NetBSD: grammar.y,v 1.7 1999/07/26 21:14:21 hubertf Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -68,7 +68,7 @@
#if 0
static char sccsid[] = "@(#)grammar.y 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: grammar.y,v 1.6 1999/07/25 00:24:38 hubertf Exp $");
+__RCSID("$NetBSD: grammar.y,v 1.7 1999/07/26 21:14:21 hubertf Exp $");
#endif
#endif /* not lint */
@@ -253,7 +253,6 @@ Apoint:
sp->airport[sp->num_airports].y = $3;
sp->airport[sp->num_airports].dir = dir;
check_point($2, $3);
- check_adir($2, $3, dir);
sp->num_airports++;
}
;
@@ -377,12 +376,6 @@ check_edir(x, y, dir)
yyerror("Bad direction for entrance at exit.");
}
-void
-check_adir(x, y, dir)
- int x __attribute__((__unused__)), y __attribute__((__unused__)), dir __attribute__((__unused__));
-{
-}
-
int
checkdefs()
{