1/* 2 * Copyright 2016 The Emscripten Authors. All rights reserved. 3 * Emscripten is available under two separate licenses, the MIT license and the 4 * University of Illinois/NCSA Open Source License. Both these licenses can be 5 * found in the LICENSE file. 6 */ 7 8#include <stdio.h> 9#include <emscripten.h> 10 11void main_loop(void) { 12} 13 14int main(void) { 15 emscripten_set_main_loop(main_loop, 0, 0); 16 return 0; 17} 18 19 20