macaw/x86/tests/x64/test-conditional.c
2017-09-27 15:54:43 -07:00

12 lines
95 B
C

#include "util.h"
int g = -11;
void _start() {
if(g > 0) {
g = g + 1;
}
EXIT();
}