blob: 82df064b1bd8e1153397ad9eb5bcb6eda110889c [file] [log] [blame] [edit]
int __attribute__((stdcall)) func(int a, int b, int c, int d) {
return a + b + c + d;
}
int main() {
return func(1, 2, 3, 4); // break here
}