diff options
Diffstat (limited to 'usr/src/cmd/csh/printf.c')
-rw-r--r-- | usr/src/cmd/csh/printf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr/src/cmd/csh/printf.c b/usr/src/cmd/csh/printf.c index 68272cb5a4..3867413493 100644 --- a/usr/src/cmd/csh/printf.c +++ b/usr/src/cmd/csh/printf.c @@ -1,5 +1,5 @@ /* - * Copyright 2004 Sun Microsystems, Inc. All rights reserved. + * Copyright 2005 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -51,6 +51,8 @@ printf(const char *format, ...) va_start(stupid, format); _print(p, &stupid); va_end(stupid); + + return (0); } /* |