1#ifdef LIBC_SCCS 2 .asciz "@(#)abs.s 1.1 (Berkeley/CCI) 08/01/86" 3#endif LIBC_SCCS 4 5/* abs - int absolute value */ 6 7#include "DEFS.h" 8 9ENTRY(abs, 0) 10 movl 4(fp),r0 11 bgeq 1f 12 mnegl r0,r0 131: 14 ret 15