diff test/call_suite/globals.h @ 491:e3bf15207d93

- added unsigned types to call_suite test
author Tassilo Philipp
date Mon, 21 Mar 2022 10:02:04 +0100
parents 23b12c7ad462
children ed7d1f5e7973
line wrap: on
line diff
--- a/test/call_suite/globals.h	Sun Mar 20 14:26:55 2022 +0100
+++ b/test/call_suite/globals.h	Mon Mar 21 10:02:04 2022 +0100
@@ -24,7 +24,7 @@
 */
 
 
-#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)
+#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)
 
 #define X(CH,T) extern T *K_##CH; extern T *V_##CH;
 DEF_TYPES