1// Copyright 2015 The Emscripten Authors. All rights reserved. 2// Emscripten is available under two separate licenses, the MIT license and the 3// University of Illinois/NCSA Open Source License. Both these licenses can be 4// found in the LICENSE file. 5 6extern "C" { 7 int js_library_function(); 8} 9 10int cpp_library_function() 11{ 12 return js_library_function(); 13} 14 15