You can define a macro like this:
#define BREAKABLE_SCOPE(x) for(int x;x<1;++x)
Then use it:
BREAKABLE_SCOPE(_) { ... if (condition) break; ... }