Newer
Older
UbixOS / src / lib / libc_old / math / sqrt.c
@Charlie Root Charlie Root on 31 Dec 2017 64 bytes Sync
#include <math.h>

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