blob: 6f9787c30a36c7807df49bb219bdca27228df746 [file] [log] [blame]
#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;
}