xref: /original-bsd/sys/sys/tprintf.h (revision 990ad5b1)
1 /*-
2  * Copyright (c) 1990 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)tprintf.h	7.2 (Berkeley) 05/04/91
8  */
9 
10 typedef struct session *tpr_t;
11 
12 tpr_t	tprintf_open __P((struct proc *));
13 void	tprintf_close __P((tpr_t));
14 
15 void	tprintf __P((tpr_t, const char *fmt, ...));
16