mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
Use the correct width integer on both i386 and alpha.
Reviewed by: Steve Price <sprice@hiwaay.net>
This commit is contained in:
parent
a0ca55077a
commit
485de8b5d2
1 changed files with 5 additions and 5 deletions
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
/* F2C_INTEGER will normally be `int' but would be `long' on 16-bit systems */
|
||||
/* we assume short, float are OK */
|
||||
typedef long int /* long int */ integer;
|
||||
typedef int /* long int */ integer;
|
||||
typedef unsigned long int /* long */ uinteger;
|
||||
typedef char *address;
|
||||
typedef short int shortint;
|
||||
|
|
@ -26,7 +26,7 @@ typedef float real;
|
|||
typedef double doublereal;
|
||||
typedef struct { real r, i; } complex;
|
||||
typedef struct { doublereal r, i; } doublecomplex;
|
||||
typedef long int /* long int */ logical;
|
||||
typedef int /* long int */ logical;
|
||||
typedef short int shortlogical;
|
||||
typedef char logical1;
|
||||
typedef char integer1;
|
||||
|
|
@ -52,9 +52,9 @@ typedef short flag;
|
|||
typedef short ftnlen;
|
||||
typedef short ftnint;
|
||||
#else
|
||||
typedef long int /* long int */ flag;
|
||||
typedef long int /* long int */ ftnlen;
|
||||
typedef long int /* long int */ ftnint;
|
||||
typedef int /* long int */ flag;
|
||||
typedef int /* long int */ ftnlen;
|
||||
typedef int /* long int */ ftnint;
|
||||
#endif
|
||||
|
||||
/*external read, write*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue