diff options
Diffstat (limited to 'usr.bin/f2c/f2c.h')
-rw-r--r-- | usr.bin/f2c/f2c.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/f2c/f2c.h b/usr.bin/f2c/f2c.h index fc1e9791fbc72..8f18f6c7a6d29 100644 --- a/usr.bin/f2c/f2c.h +++ b/usr.bin/f2c/f2c.h @@ -36,9 +36,9 @@ typedef short flag; typedef short ftnlen; typedef short ftnint; #else -typedef long flag; -typedef long ftnlen; -typedef long ftnint; +typedef long int flag; +typedef long int ftnlen; +typedef long int ftnint; #endif /*external read, write*/ @@ -131,7 +131,7 @@ union Multitype { /* for multiple entry points */ typedef union Multitype Multitype; -typedef long Long; /* No longer used; formerly in Namelist */ +/*typedef long int Long;*/ /* No longer used; formerly in Namelist */ struct Vardesc { /* for Namelist */ char *name; |