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.
srs/trunk/3rdparty/st-srs/tools/stack/stack.c

18 lines
226 B
C

/* SPDX-License-Identifier: MIT */
/* Copyright (c) 2022 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;
}