Newer
Older
ubixos / src / lib / libc_old / math / sqrt.c
@reddawg reddawg on 16 Jan 2007 62 bytes UbixOS
#include <math.h>

double sqrt(double val)
{
	return val;
}