hanchenye-llvm-project/lldb/test/lang/c/const_variables/functions.c

19 lines
179 B
C

#include <stdio.h>
void foo()
{
printf("foo()\n");
}
int bar()
{
int ret = 3;
printf("bar()->%d\n", ret);
return ret;
}
void baaz(int i)
{
printf("baaz(%d)\n", i);
}