blob: 080229be8a5dc038d9023b8ce2397bc69f4a6f2f [file] [log] [blame]
/* RUN: %clang_cc1 -std=c89 -fsyntax-only -verify -Wno-strict-prototypes -Wmain-return-type %s
*/
/* expected-no-diagnostics */
void exit(int);
int main() {
if (1)
exit(1);
}