diff options
author | kris <kris@FreeBSD.org> | 2001-05-20 05:44:03 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2001-05-20 05:44:03 +0000 |
commit | 64a6b49535aaa8ef6146a87031ff015e42fc0683 (patch) | |
tree | 6998c793af8787b7f4f3f9f445766a99fd6a1f2c /games/pom | |
parent | 370c50d30036d203968bd6054c10d19d4affb7ea (diff) | |
download | FreeBSD-src-64a6b49535aaa8ef6146a87031ff015e42fc0683.zip FreeBSD-src-64a6b49535aaa8ef6146a87031ff015e42fc0683.tar.gz |
Silence WARNS=2 and BDECFLAGS on alpha and i386
MFC after: 1 week
Diffstat (limited to 'games/pom')
-rw-r--r-- | games/pom/Makefile | 3 | ||||
-rw-r--r-- | games/pom/pom.c | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/games/pom/Makefile b/games/pom/Makefile index afde919..e139ce9 100644 --- a/games/pom/Makefile +++ b/games/pom/Makefile @@ -5,6 +5,7 @@ PROG= pom MAN= pom.6 DPADD= ${LIBM} LDADD= -lm -CFLAGS+=-Wall + +WARNS= 2 .include <bsd.prog.mk> diff --git a/games/pom/pom.c b/games/pom/pom.c index 2407911..90e0f42 100644 --- a/games/pom/pom.c +++ b/games/pom/pom.c @@ -75,6 +75,7 @@ static const char rcsid[] = static void adj360 __P((double *)); static double dtor __P((double)); +int main __P((void)); static double potm __P((double)); int |