]> andersk Git - splint.git/blob - test/tests2.4/longlong.c
noexpand always false.
[splint.git] / test / tests2.4 / longlong.c
1 long long llf (long long llx, long lx, long double lld) {
2   int m = llx; /* int <- long long */
3   m = 243LL;
4   lld = 3.542L;
5
6   lx = 5234LL;
7   lx = 5342L;
8   llx = lx;
9   lx = llx; /* long <- long long */
10   llx = m;
11
12   return lx;
13 }
14
This page took 0.035917 seconds and 5 git commands to generate.