new approach for handling aliases (based on local node allocation)
[unix-history] / usr / src / sys / i386 / stand / prf.c
/*-
* Copyright (c) 1990 The Regents of the University of California.
* All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* William Jolitz.
*
* %sccs.include.redist.c%
*
* @(#)prf.c 7.4 (Berkeley) %G%
*/
#include "types.h"
putchar(c)
char c;
{
if (c == '\n')
sput('\r');
sput(c);
return(0);
}
wait(n) { while(n--) ; }