home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
splint3s.zip
/
splint-3.0.1.6
/
test
/
lintcomments.c
< prev
next >
Wrap
Text File
|
2002-02-13
|
380b
|
29 lines
int f (int x)
{
int i = 0;
switch (x)
{
case 1: i++; /*@fallthrough@*/ /*FALLTHROUGH*/
case 2: i++; /*FALLTHROUGH*/
case 3: i++; /*FALLTHRU*/
case 4: i++;
default: i++;
}
if (i > 2)
{
return i;
/*@notreached@*/
i++;
}
else
{
return i;
/*NOTREACHED*/
i++;
}
/*@notreached@*/ return 3;
}