1// Copyright 2017 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 6addToLibrary({ 7 $foreignCounter: 0, 8 foreignFunctionThatTakesThreeParameters__deps: ['$foreignCounter'], 9 foreignFunctionThatTakesThreeParameters: function(a, b, c) { 10 foreignCounter += a + b + c; 11 return foreignCounter; 12 } 13}); 14 15