xref: /csrg-svn/lib/libc/tahoe/sys/cerror.s (revision 61190)
129445Ssam/*
2*61190Sbostic * Copyright (c) 1983, 1993
3*61190Sbostic *	The Regents of the University of California.  All rights reserved.
434389Sbostic *
542648Sbostic * %sccs.include.redist.c%
629445Ssam */
729445Ssam
834389Sbostic#if defined(SYSLIBC_SCCS) && !defined(lint)
9*61190Sbostic	.asciz "@(#)cerror.s	8.1 (Berkeley) 06/04/93"
1034389Sbostic#endif /* SYSLIBC_SCCS and not lint */
1129445Ssam
1229445Ssam#include "SYS.h"
1329445Ssam
1429445Ssam	.globl	_errno
1529445Ssamcerror:
1629445Ssam	movl	r0,_errno
1729445Ssam	mnegl	$1,r0
1829445Ssam	ret
19