XINU
abs.c
Go to the documentation of this file.
1 
13 int abs(int arg)
14 {
15  if (arg < 0)
16  arg = -arg;
17  return (arg);
18 }
int abs(int arg)
整数の絶対値(int型)を返す。
Definition: abs.c:13