Changeset 906 for trunk/testcase/570c.c
- Timestamp:
- Dec 15, 2003, 9:33:09 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/testcase/570c.c
-
Property cvs2svn:cvs-rev
changed from
1.6
to1.7
r905 r906 84 84 85 85 86 /* 87 * Parameters. 88 */ 89 int ParamArgs( 90 void (* _System pfn1Void)(int a, int b, int c, int d), 91 void * (* _System pfn1PVoid)(int a, int b, int c, int d), 92 int (* _System pfn1Int)(int a, int b, int c, int d), 93 PTYPE (* _System pfn1PType)(int a, int b, int c, int d), 94 void (_System * pfn2Void)(int a, int b, int c, int d), 95 void * (_System * pfn2PVoid)(int a, int b, int c, int d), 96 int (_System * pfn2Int)(int a, int b, int c, int d), 97 PTYPE (_System * pfn2PType)(int a, int b, int c, int d) 98 ) 99 { 100 pfn1Void(1,2,3,4); 101 pfn1PVoid(1,2,3,4); 102 pfn1Int(1,2,3,4); 103 pfn1PType(1,2,3,4); 104 105 pfn2Void(1,2,3,4); 106 pfn2PVoid(1,2,3,4); 107 pfn2Int(1,2,3,4); 108 pfn2PType(1,2,3,4); 109 return 0; 110 } 111 112 86 113 87 114 int DoC(int a, int b, int c, int d) … … 172 199 PVar2PType(1,2,3,4); 173 200 201 /* parameters */ 202 ParamArgs(Void, PVoid, Int, PType, 203 Void, PVoid, Int, PType); 204 205 174 206 return 0; 175 207 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.