1 extern int do_stuff (void);
3 /* Various misleading "while" loops that look like do-whiles due
4 to proximity to another clause, but are actually empty. */
6 void not_a_do_while_1 (int flag
)
11 } while (flag
); // TODO: should we complain here?
14 void not_a_do_while_2 (int flag
)
19 } while (flag
); // TODO: should we complain here?
22 void not_a_do_while_3 (int flag
)
26 } while (flag
); // TODO: should we complain here?
29 void not_a_do_while_4 (int flag
)
33 } while (flag
); // TODO: should we complain here?