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