00001 00002 #include "../../routines/machine.h" 00003 00004 int F2C(ext1c)(n, a, b, c) 00005 int *n; 00006 double *a, *b, *c; 00007 { 00008 int k; 00009 for (k = 0; k < *n; ++k) 00010 c[k] = a[k] + b[k]; 00011 return(0); 00012 } 00013