/* * Copyright (c) 1992 The Regents of the University of California. * All rights reserved. * * This software was developed by the Computer Systems Engineering group * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and * contributed to Berkeley. * * %sccs.include.redist.c% * * from: $Header: abs.s,v 1.1 91/07/06 18:01:57 torek Exp $ */ #if defined(LIBC_SCCS) && !defined(lint) .asciz "@(#)abs.s 5.1 (Berkeley) 06/25/92" #endif /* LIBC_SCCS and not lint */ /* abs - int absolute value */ #include "DEFS.h" ENTRY(abs) tst %o0 bl,a 1f neg %o0 1: retl nop