147909Sbostic/*- 2*61235Sbostic * Copyright (c) 1991, 1993 3*61235Sbostic * The Regents of the University of California. All rights reserved. 447909Sbostic * 547971Sbostic * %sccs.include.redist.c% 621439Sdist */ 713414Sroot 847909Sbostic#if defined(LIBC_SCCS) && !defined(lint) 9*61235Sbostic .asciz "@(#)abs.s 8.1 (Berkeley) 06/04/93" 1047909Sbostic#endif /* LIBC_SCCS and not lint */ 1121439Sdist 1251658Sbostic#include "DEFS.h" 1351658Sbostic 1451658SbosticENTRY(abs, 0) 1513414Sroot movl 4(ap),r0 1647971Sbostic jgeq 1f 1713414Sroot mnegl r0,r0 1813414Sroot1: 1913414Sroot ret 20