//
// Test functions
//

#include <stdio.h>


#define N 3

int main()
{
   double *testfn( void );
   double *out;

   out = testfn();
   printf("Got here!\n");
   for(int i=0; i<N; i++) printf("%.2f\n", out[i]);
   return 0;
}

double *testfn( )
{
   static double out[N];
   for( int i=0; i<N; i++ ) out[i]=i;
   return out;
}
