V9/libc/sys/nice.s

# C library-- nice

# error = nice(hownice)

	nice = 34
.globl	_nice
.globl  cerror

_nice:
	pea	nice
	trap	#0
	bcc 	noerror
	jmp 	cerror
noerror:
	clrl	d0
	rts