diff options
| author | jtc <jtc@NetBSD.org> | 1993-12-31 19:13:47 +0000 |
|---|---|---|
| committer | jtc <jtc@NetBSD.org> | 1993-12-31 19:13:47 +0000 |
| commit | 58f143a59940906d3c2d9e349cbf0923c8b0abfd (patch) | |
| tree | 6df36466a4e138d9ad7d4215ed41af9296f7c19d /lib/libc/stdio/printf.c | |
| parent | e63929d7f51092dfd9c640a98d9bb93ca2761261 (diff) | |
Add explicit return types to function definitions.
Diffstat (limited to 'lib/libc/stdio/printf.c')
| -rw-r--r-- | lib/libc/stdio/printf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdio/printf.c b/lib/libc/stdio/printf.c index 6ef39790e8b..8ded478dfc9 100644 --- a/lib/libc/stdio/printf.c +++ b/lib/libc/stdio/printf.c @@ -36,7 +36,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)printf.c 5.6 (Berkeley) 1/20/91";*/ -static char *rcsid = "$Id: printf.c,v 1.3 1993/08/26 00:47:11 jtc Exp $"; +static char *rcsid = "$Id: printf.c,v 1.4 1993/12/31 19:14:26 jtc Exp $"; #endif /* LIBC_SCCS and not lint */ #include <stdio.h> @@ -46,6 +46,7 @@ static char *rcsid = "$Id: printf.c,v 1.3 1993/08/26 00:47:11 jtc Exp $"; #include <varargs.h> #endif +int #if __STDC__ printf(char const *fmt, ...) #else |
