Changeset 1391 for branches/GNU/src/gcc/libf2c/g2c.hin
- Timestamp:
- Apr 27, 2004, 8:39:34 PM (21 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 dir.info 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libf2c/g2c.hin
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r1390 r1391 133 133 } inlist; 134 134 135 #define VOID void136 137 135 union Multitype { /* for multiple entry points */ 138 136 integer1 g; … … 184 182 typedef real (*R_fp)(...); 185 183 typedef doublereal (*D_fp)(...), (*E_fp)(...); 186 typedef /* Complex */ VOID(*C_fp)(...);187 typedef /* Double Complex */ VOID(*Z_fp)(...);184 typedef /* Complex */ void (*C_fp)(...); 185 typedef /* Double Complex */ void (*Z_fp)(...); 188 186 typedef logical (*L_fp)(...); 189 187 typedef shortlogical (*K_fp)(...); 190 typedef /* Character */ VOID(*H_fp)(...);188 typedef /* Character */ void (*H_fp)(...); 191 189 typedef /* Subroutine */ int (*S_fp)(...); 192 190 #else … … 196 194 typedef real (*R_fp)(); 197 195 typedef doublereal (*D_fp)(), (*E_fp)(); 198 typedef /* Complex */ VOID(*C_fp)();199 typedef /* Double Complex */ VOID(*Z_fp)();196 typedef /* Complex */ void (*C_fp)(); 197 typedef /* Double Complex */ void (*Z_fp)(); 200 198 typedef logical (*L_fp)(); 201 199 typedef shortlogical (*K_fp)(); 202 typedef /* Character */ VOID(*H_fp)();200 typedef /* Character */ void (*H_fp)(); 203 201 typedef /* Subroutine */ int (*S_fp)(); 204 202 #endif 205 203 /* E_fp is for real functions when -R is not specified */ 206 typedef VOIDC_f; /* complex function */207 typedef VOIDH_f; /* character function */208 typedef VOIDZ_f; /* double complex function */204 typedef void C_f; /* complex function */ 205 typedef void H_f; /* character function */ 206 typedef void Z_f; /* double complex function */ 209 207 typedef doublereal E_f; /* real function with -R not specified */ 210 208 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.