BSD 3 development
[unix-history] / usr / src / libc / crt / cerror.s
CommitLineData
18e5fa7e
BJ
1# C return sequence which
2# sets errno, returns -1.
3
4.globl cerror
5.comm _errno,4
6
7cerror:
8 movl r0,_errno
9 mnegl $1,r0
10 ret