mirror of
https://github.com/GaloisInc/macaw.git
synced 2024-12-19 03:51:39 +03:00
12 lines
95 B
C
12 lines
95 B
C
|
#include "util.h"
|
||
|
|
||
|
int g = -11;
|
||
|
|
||
|
void _start() {
|
||
|
if(g > 0) {
|
||
|
g = g + 1;
|
||
|
}
|
||
|
|
||
|
EXIT();
|
||
|
}
|