1 /*- 2 * Copyright (c) 1990, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * %sccs.include.redist.c% 6 * 7 * @(#)tprintf.h 8.1 (Berkeley) 06/02/93 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