dev/c/cmake_lib/libmean/mean.c

8 lines
126 B
C
Raw Normal View History

2012-05-22 13:53:04 +04:00
//#include <stdio.h>
#define __DLL_MEAN__
#include "mean.h"
2012-05-22 13:53:04 +04:00
double DLL_SPEC mean(double a, double b) {
2012-05-22 13:53:04 +04:00
return (a+b) / 2;
}