vperf/test.c
2021-07-17 10:25:21 +08:00

15 lines
201 B
C

/*
* test.c
* Copyright (C) 2021 light <light@lightdeMBP>
*
* Distributed under terms of the MIT license.
*/
#include "./include/test.h"
double get_sqrt(double var1)
{
return sqrt(var1);
}