14 lines
208 B
C++
14 lines
208 B
C++
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
#include "lmp_f2c.h"
|
|
doublereal dlamc3_(doublereal *a, doublereal *b)
|
|
{
|
|
doublereal ret_val;
|
|
ret_val = *a + *b;
|
|
return ret_val;
|
|
}
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|