xref: /csrg-svn/lib/libc/vax/stdlib/abs.s (revision 51658)
147909Sbostic/*-
247971Sbostic * Copyright (c) 1991 The Regents of the University of California.
347909Sbostic * All rights reserved.
447909Sbostic *
547971Sbostic * %sccs.include.redist.c%
621439Sdist */
713414Sroot
847909Sbostic#if defined(LIBC_SCCS) && !defined(lint)
9*51658Sbostic	.asciz "@(#)abs.s	5.6 (Berkeley) 11/12/91"
1047909Sbostic#endif /* LIBC_SCCS and not lint */
1121439Sdist
12*51658Sbostic#include "DEFS.h"
13*51658Sbostic
14*51658SbosticENTRY(abs, 0)
1513414Sroot	movl	4(ap),r0
1647971Sbostic	jgeq	1f
1713414Sroot	mnegl	r0,r0
1813414Sroot1:
1913414Sroot	ret
20