aboutsummaryrefslogtreecommitdiff
path: root/src/bar.c
blob: 7282ea2e9b8cd7c561423c11510dc634041a4ee7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "bar.h"

void bar(const int x)
{
    int i;

    /* Some stupid calculations here and there. */
    for (i = 0; i < 90; i++)
    {
        if (i - x)
        {
            for (;;);
        }
    }
}