mirror of
https://github.com/ossrs/srs.git
synced 2025-11-24 03:44:02 +08:00
20 lines
308 B
C++
20 lines
308 B
C++
|
|
/*
|
||
|
|
g++ hello-world.cpp ../../objs/st/libst.a -g -O0 -o hello-world && ./hello-world
|
||
|
|
*/
|
||
|
|
#include <stdio.h>
|
||
|
|
#include "../../objs/st/st.h"
|
||
|
|
|
||
|
|
void foo() {
|
||
|
|
st_init();
|
||
|
|
|
||
|
|
for (int i = 0; ; i++) {
|
||
|
|
st_sleep(1);
|
||
|
|
printf("#%d: main: working\n", i);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
foo();
|
||
|
|
return 0;
|
||
|
|
}
|