1 // RUN: %clang_cc1 -fsyntax-only -Wmissing-prototypes -x c -ffreestanding -verify %s
2 // RUN: %clang_cc1 -fsyntax-only -Wmissing-prototypes -x c++ -ffreestanding -verify %s
3 // expected-no-diagnostics
main()4 int main() {
5 return 0;
6 }
7
efi_main()8 int efi_main() {
9 return 0;
10 }
11