diff options
Diffstat (limited to 'usr/src/cmd/csh/sh.debug.c')
-rw-r--r-- | usr/src/cmd/csh/sh.debug.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr/src/cmd/csh/sh.debug.c b/usr/src/cmd/csh/sh.debug.c index 379a327f93..4a442e75da 100644 --- a/usr/src/cmd/csh/sh.debug.c +++ b/usr/src/cmd/csh/sh.debug.c @@ -1,5 +1,5 @@ /* - * Copyright 1990 Sun Microsystems, Inc. All rights reserved. + * Copyright 2005 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -29,7 +29,8 @@ FILE *trace; * Initialie trace file. * Called from main. */ -trace_init() +void +trace_init(void) { extern char *mktemp(); char name[128]; @@ -44,6 +45,7 @@ trace_init() * write message to trace file */ /*VARARGS1*/ +void tprintf(fmt,a,b,c,d,e,f,g,h,i,j) char *fmt; { |