mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00: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;
|
||
|
}
|