hanchenye-llvm-project/lldb/test/lang/c/forward/main.c

19 lines
182 B
C

#include <stdio.h>
#include "foo.h"
struct bar
{
int a;
int b;
};
int
main (int argc, char const *argv[])
{
struct bar b= { 1, 2 };
foo (&b);
return 0;
}