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

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