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