cmake-library/src/add.c

5 lines
59 B
C

#include <add.h>
int add(int a,int b)
{
return a + b;
}