xref: /original-bsd/sys/i386/stand/prf.c (revision 3705696b)
1 /*-
2  * Copyright (c) 1990, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * William Jolitz.
7  *
8  * %sccs.include.redist.c%
9  *
10  *	@(#)prf.c	8.1 (Berkeley) 06/11/93
11  */
12 
13 #include <sys/types.h>
14 
15 putchar(c)
16 char c;
17 {
18         if (c == '\n')
19 		sput('\r');
20 	sput(c);
21 	return(0);
22 }
23 
24 wait(n) { while(n--) ; }
25