mirror of
https://github.com/ossrs/srs.git
synced 2025-11-24 03:44:02 +08:00
12 lines
127 B
C++
12 lines
127 B
C++
|
|
/*
|
||
|
|
g++ hello.cpp -g -O0 -o hello && ./hello
|
||
|
|
*/
|
||
|
|
|
||
|
|
void foo() {
|
||
|
|
}
|
||
|
|
|
||
|
|
int main(int argc, char** argv) {
|
||
|
|
foo();
|
||
|
|
return 0;
|
||
|
|
}
|