1#include <stdio.h>
2#include "foo.h"
3
4int
5foo (struct bar *bar_ptr)
6{
7    return printf ("bar_ptr = %p\n", bar_ptr);
8}
9