abs method

int abs(
  1. int __x
)

Implementation

int abs(
  int __x,
) {
  return _abs(
    __x,
  );
}