summaryrefslogtreecommitdiff
path: root/src/stub_main.cc
blob: 8540fcd19798887dbc3b40e3d827948ac3bc6824 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Stub main for size measurement builds.
// Binary compiles but does NOT run.
// This file is only compiled when STRIP_EXTERNAL_LIBS is defined.

#if defined(STRIP_EXTERNAL_LIBS)

int main(int argc, char** argv) {
  (void)argc;
  (void)argv;
  return 0;
}

#endif // STRIP_EXTERNAL_LIBS