Newer
Older
Scratch / lockwasher / src / lib / libc / math / sqrt.c
@Christopher W. Olsen Christopher W. Olsen on 25 Oct 2019 64 bytes Scratch
#include <math.h>

double sqrt(double val) {
  return(val);
  }