diff options
author | imp <imp@FreeBSD.org> | 2002-02-18 05:15:19 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2002-02-18 05:15:19 +0000 |
commit | 24cd0a3c91f27cb3589ccd980187ccc8c7c51b6d (patch) | |
tree | 275284ba202a3acb4c5d5041be389eba1a666e3b /games/pom | |
parent | d533053fe68906076e15c9a57531ef155a7d4283 (diff) | |
download | FreeBSD-src-24cd0a3c91f27cb3589ccd980187ccc8c7c51b6d.zip FreeBSD-src-24cd0a3c91f27cb3589ccd980187ccc8c7c51b6d.tar.gz |
Remove __P
Remove __STDC__ (which means we now use stdarg rather than vararg)
Remove register
Remove main prototype
Diffstat (limited to 'games/pom')
-rw-r--r-- | games/pom/pom.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/games/pom/pom.c b/games/pom/pom.c index 90e0f42..b590991 100644 --- a/games/pom/pom.c +++ b/games/pom/pom.c @@ -73,10 +73,9 @@ static const char rcsid[] = #define Nzero 55.204723 /* lunar mean long of node at EPOCH */ #define isleap(y) ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0) -static void adj360 __P((double *)); -static double dtor __P((double)); -int main __P((void)); -static double potm __P((double)); +static void adj360(double *); +static double dtor(double); +static double potm(double); int main() |