xref: /csrg-svn/lib/libc/hp300/sys/sigpending.s (revision 41854)
1*41854Sbostic/*-
2*41854Sbostic * Copyright (c) 1990 The Regents of the University of California.
3*41854Sbostic * All rights reserved.
4*41854Sbostic *
5*41854Sbostic * This code is derived from software contributed to Berkeley by
6*41854Sbostic * the Systems Programming Group of the University of Utah Computer
7*41854Sbostic * Science Department.
8*41854Sbostic *
9*41854Sbostic * %sccs.include.redist.c%
10*41854Sbostic */
11*41854Sbostic
12*41854Sbostic#if defined(LIBC_SCCS) && !defined(lint)
13*41854Sbostic	.asciz "@(#)sigpending.s	5.1 (Berkeley) 05/12/90"
14*41854Sbostic#endif /* LIBC_SCCS and not lint */
15*41854Sbostic
16*41854Sbostic#include "SYS.h"
17*41854Sbostic
18*41854SbosticSYSCALL(sigpending)
19*41854Sbostic	movl	d0,sp@(4)
20*41854Sbostic	clrl	d0
21*41854Sbostic	rts
22