Newer
Older
UbixOS / lib / libc_old / stdlib / abs.c
#include <stdlib.h>

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