Home | History | Annotate | Download | only in forward
      1 #include <stdio.h>
      2 #include "foo.h"
      3 
      4 struct bar
      5 {
      6     int a;
      7     int b;
      8 };
      9 
     10 int
     11 main (int argc, char const *argv[])
     12 {
     13     struct bar b= { 1, 2 };
     14 
     15     foo (&b);
     16 
     17     return 0;
     18 }
     19