Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/test/cmake/target_js/main.cpp
6170 views
1
// Copyright 2013 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
6
extern "C" {
7
void lib_function();
8
void lib_function2();
9
}
10
11
int cpp_library_function();
12
13
int main()
14
{
15
lib_function();
16
lib_function2();
17
cpp_library_function();
18
}
19
20