]> andersk Git - splint.git/blame - test/tests2.4/longlong.c
noexpand always false.
[splint.git] / test / tests2.4 / longlong.c
CommitLineData
885824d3 1long 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.416822 seconds and 5 git commands to generate.