]> andersk Git - splint.git/blob - test/manual/noeffect.c
Fixed problem with handleing oldsytle function declarations.
[splint.git] / test / manual / noeffect.c
1 extern void nomodcall (int *x) /*@*/;
2 extern void mysterycall (int *x);
3
4 int noeffect (int *x, int y)
5 {
6   y == *x;
7   nomodcall (x);  
8   mysterycall (x); 
9   return *x;
10 }
This page took 0.038429 seconds and 5 git commands to generate.