diff options
Diffstat (limited to 'src/bar.c')
| -rw-r--r-- | src/bar.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/bar.c b/src/bar.c new file mode 100644 index 0000000..7282ea2 --- /dev/null +++ b/src/bar.c @@ -0,0 +1,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 (;;); + } + } +} |
