mirror of
https://github.com/rizsotto/scan-build.git
synced 2025-12-21 12:19:29 +01:00
14 lines
156 B
C
14 lines
156 B
C
#include <one.h>
|
|
|
|
int do_nothing_loop()
|
|
{
|
|
int i = 32;
|
|
int idx = 0;
|
|
|
|
for (idx = i; idx > 0; --idx)
|
|
{
|
|
i += idx;
|
|
}
|
|
return i;
|
|
}
|