mirror of https://github.com/ossrs/srs.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
230 B
C++
15 lines
230 B
C++
4 years ago
|
/*
|
||
|
g++ st0.cpp ../../objs/st/libst.a -g -O0 -o st && ./st
|
||
|
*/
|
||
|
#include <stdio.h>
|
||
|
#include "../../objs/st/st.h"
|
||
|
|
||
|
int main(int argc, char** argv) {
|
||
|
st_init();
|
||
|
for (;;) {
|
||
|
st_usleep(1000 * 1000);
|
||
|
}
|
||
|
return 0;
|
||
|
}
|
||
|
|