1  extern double foo(double, double);
       2  extern void bar(float*, int*);
       3  
       4  void
       5  baz(int* arg)
       6  {
       7      float tmp = (float)foo(2.0,1.0);
       8      unsigned i;
       9      short junk[64];
      10  
      11      for (i=0; i<10; i++, arg++) {
      12          bar(&tmp, arg);
      13      }
      14  }