xref: /csrg-svn/lib/libc/vax/stdlib/abs.s (revision 47971)
147909Sbostic/*-
2*47971Sbostic * Copyright (c) 1991 The Regents of the University of California.
347909Sbostic * All rights reserved.
447909Sbostic *
5*47971Sbostic * %sccs.include.redist.c%
621439Sdist */
713414Sroot
847909Sbostic#if defined(LIBC_SCCS) && !defined(lint)
9*47971Sbostic	.asciz "@(#)abs.s	5.5 (Berkeley) 04/12/91"
1047909Sbostic#endif /* LIBC_SCCS and not lint */
1121439Sdist
12*47971SbosticENTRY(abs)
1313414Sroot	movl	4(ap),r0
14*47971Sbostic	jgeq	1f
1513414Sroot	mnegl	r0,r0
1613414Sroot1:
1713414Sroot	ret
18