Various minor fixes for compiler/linter (other then splint itself) warnings.
[splint-patched.git] / test / impabstract.c
blobad8906978c90891c4b3670a97ee61f2ccfc01866
1 typedef int mint; /* Concrete in impabstract.lcl */
2 typedef /*@concrete@*/ int cint; /* Abstract in impabstract.lcl */
4 int f (mint m, cint c)
6 if (c > 3)
8 return c;
11 if (m < 2)
13 return m;
16 return 3;