aboutsummaryrefslogtreecommitdiff
path: root/tests/pre_run_deps.cpp
blob: 41c06972890691ff02ee26107e9cf74a49e84426 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
#include <emscripten.h>

int main() {
  printf("main() called.\n");
  int result = emscripten_run_script_int("Module.okk");
  REPORT_RESULT();
  return 1;
}