15 lines
201 B
C
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);
|
|
}
|