5 lines
55 B
FortranFixed
5 lines
55 B
FortranFixed
|
|
double add_n(double* a, double* b)
|
||
|
|
{
|
||
|
|
return *a + *b;
|
||
|
|
}
|