1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00
srs/trunk/3rdparty/st-srs/tools/stack/stack.c
2025-01-01 23:35:10 +08:00

17 lines
226 B
C

/* SPDX-License-Identifier: MIT */
/* Copyright (c) 2025 Winlin */
long foo() {
char c;
int i;
long l;
long long ll;
return c + i + l + ll;
}
int main(int argc, char** argv)
{
foo();
return 0;
}