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

int abs(int val) {
  return(val>0?val:-val);
  }