diff options
Diffstat (limited to 'src/lib/libc/stdlib/multibyte.c')
-rw-r--r-- | src/lib/libc/stdlib/multibyte.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/lib/libc/stdlib/multibyte.c b/src/lib/libc/stdlib/multibyte.c index fe1cd5781b..6f08bbe342 100644 --- a/src/lib/libc/stdlib/multibyte.c +++ b/src/lib/libc/stdlib/multibyte.c | |||
@@ -32,8 +32,7 @@ | |||
32 | */ | 32 | */ |
33 | 33 | ||
34 | #if defined(LIBC_SCCS) && !defined(lint) | 34 | #if defined(LIBC_SCCS) && !defined(lint) |
35 | /*static char *sccsid = "from: @(#)multibyte.c 5.1 (Berkeley) 2/18/91";*/ | 35 | static char *rcsid = "$OpenBSD: multibyte.c,v 1.3 2002/02/19 19:39:37 millert Exp $"; |
36 | static char *rcsid = "$Id: multibyte.c,v 1.1.1.1 1995/10/18 08:42:18 deraadt Exp $"; | ||
37 | #endif /* LIBC_SCCS and not lint */ | 36 | #endif /* LIBC_SCCS and not lint */ |
38 | 37 | ||
39 | #include <stdlib.h> | 38 | #include <stdlib.h> |
@@ -74,13 +73,7 @@ mbtowc(pwc, s, n) | |||
74 | 73 | ||
75 | /*ARGSUSED*/ | 74 | /*ARGSUSED*/ |
76 | int | 75 | int |
77 | #ifdef __STDC__ | ||
78 | wctomb(char *s, wchar_t wchar) | 76 | wctomb(char *s, wchar_t wchar) |
79 | #else | ||
80 | wctomb(s, wchar) | ||
81 | char *s; | ||
82 | wchar_t wchar; | ||
83 | #endif | ||
84 | { | 77 | { |
85 | if (s == NULL) | 78 | if (s == NULL) |
86 | return 0; | 79 | return 0; |