1*47909Sbostic/*- 2*47909Sbostic * Copyright (c) 1984 The Regents of the University of California. 3*47909Sbostic * All rights reserved. 4*47909Sbostic * 5*47909Sbostic * %sccs.include.proprietary.c% 621439Sdist */ 713414Sroot 8*47909Sbostic#if defined(LIBC_SCCS) && !defined(lint) 9*47909Sbostic .asciz "@(#)abs.s 5.4 (Berkeley) 04/12/91" 10*47909Sbostic#endif /* LIBC_SCCS and not lint */ 1121439Sdist 1213414Sroot#include "DEFS.h" 1313414Sroot 1417328SsamENTRY(abs, 0) 1513414Sroot movl 4(ap),r0 1613414Sroot bgeq 1f 1713414Sroot mnegl r0,r0 1813414Sroot1: 1913414Sroot ret 20