You've already forked linuxdeploy
mirror of
https://github.com/encounter/linuxdeploy.git
synced 2026-03-30 11:18:58 -07:00
11 lines
131 B
C++
11 lines
131 B
C++
|
|
#include <cstdio>
|
||
|
|
|
||
|
|
extern "C" { void hello_world(); }
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
printf("Hello World");
|
||
|
|
hello_world();
|
||
|
|
|
||
|
|
return 0;
|
||
|
|
}
|