I start to learn glibc source code, add a \'printf\' in abs.c,
abs (int i) { printf("invode abs\\n"); return i < 0 ? -i : i; }