#include "pcn_types.h"

void f(a)
int_t a[];
{
    int_t i;
    for (i = 0; i <=5; i++)
    {
	a[i] = i;
    }
}
