xref: /original-bsd/lib/libc/vax/sys/getppid.s (revision 540a81df)
1/*
2 * Copyright (c) 1983 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * %sccs.include.redist.c%
6 */
7
8#include "SYS.h"
9
10#if defined(LIBC_SCCS) && !defined(lint)
11	ASMSTR "@(#)getppid.s	5.7 (Berkeley) 05/30/90"
12#endif /* LIBC_SCCS and not lint */
13
14PSEUDO(getppid,getpid)
15	movl	r1,r0
16	ret		/* ppid = getppid(); */
17