comparison test/call_suite_aggrs/globals.h @ 492:29d09d10ecd9

- added unsigned types to call_suite_aggrs
author Tassilo Philipp
date Mon, 21 Mar 2022 10:04:10 +0100
parents 0c68b3f91367
children ed7d1f5e7973
comparison
equal deleted inserted replaced
491:e3bf15207d93 492:29d09d10ecd9
22 22
23 */ 23 */
24 24
25 25
26 /* the 'a'ggregate type points to memory with random data that is big enough to hold all different struct types */ 26 /* the 'a'ggregate type points to memory with random data that is big enough to hold all different struct types */
27 #define DEF_TYPES X(c,char) X(s,short) X(i,int) X(j,long) X(l,long long) X(p,void*) X(f,float) X(d,double) X(a,void*) 27 #define DEF_TYPES X(c,char) X(s,short) X(i,int) X(j,long) X(l,long long) X(C,unsigned char) X(S,unsigned short) X(I,unsigned int) X(J,unsigned long) X(L,unsigned long long) X(p,void*) X(f,float) X(d,double) X(a,void*)
28 28
29 #define X(CH,T) extern T *K_##CH; extern T *V_##CH; 29 #define X(CH,T) extern T *K_##CH; extern T *V_##CH;
30 DEF_TYPES 30 DEF_TYPES
31 #undef X 31 #undef X
32 32