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

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