1/* Type definitions that are used by multiple tests.  */
2
3typedef union { char c; short s; } Ucs;
4typedef union { char c; int i; } Uci;
5typedef union { char c; long l; } Ucl;
6typedef union { char c; long long ll; } Ucll;
7
8typedef union { short s; int i; } Usi;
9typedef union { short s; long l; } Usl;
10typedef union { short s; long long ll; } Usll;
11
12typedef union { int i; long l; } Uil;
13typedef union { int i; long long ll; } Uill;
14
15typedef union { long l; long long ll; } Ulll;
16