summaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>1996-03-25 21:17:37 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>1996-03-25 21:17:37 +0000
commit1090f7e5ac7f128ddfaaad6888e1d852e448016f (patch)
tree4ede26e67f557ce3114ecbaec6495bde9f7dc5f2 /lib/libc
parent5566f77801eae71ed998fd4813c41669ccb3c4a1 (diff)
Add prototypes for local functions, add const qualifiers where needed
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/string/strftime.c22
1 files changed, 14 insertions, 8 deletions
diff --git a/lib/libc/string/strftime.c b/lib/libc/string/strftime.c
index 0b69e10ac05..b6326f274ed 100644
--- a/lib/libc/string/strftime.c
+++ b/lib/libc/string/strftime.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: strftime.c,v 1.3 1996/03/09 02:42:58 niklas Exp $ */
+/* $OpenBSD: strftime.c,v 1.4 1996/03/25 21:17:36 tholo Exp $ */
/*
* Copyright (c) 1989 The Regents of the University of California.
@@ -35,7 +35,7 @@
#if defined(LIBC_SCCS) && !defined(lint)
/*static char *sccsid = "from: @(#)strftime.c 5.11 (Berkeley) 2/24/91";*/
-static char *rcsid = "$Id: strftime.c,v 1.3 1996/03/09 02:42:58 niklas Exp $";
+static char *rcsid = "$Id: strftime.c,v 1.4 1996/03/25 21:17:36 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/localedef.h>
@@ -46,8 +46,10 @@ static char *rcsid = "$Id: strftime.c,v 1.3 1996/03/09 02:42:58 niklas Exp $";
static size_t gsize;
static char *pt;
-static int _add(), _conv(), _secs();
-static size_t _fmt();
+static int _add __P((const char *));
+static int _secs __P((const struct tm *));
+static int _conv __P((int, int, char));
+static size_t _fmt __P((const char *, const struct tm *));
size_t
strftime(s, maxsize, format, t)
@@ -74,8 +76,8 @@ strftime(s, maxsize, format, t)
((t)->tm_wday ? (t)->tm_wday - 1 : 6)) / 7)
static size_t
_fmt(format, t)
- register char *format;
- struct tm *t;
+ register const char *format;
+ const struct tm *t;
{
for (; *format; ++format) {
if (*format == '%') {
@@ -276,7 +278,7 @@ _fmt(format, t)
static int
_secs(t)
- struct tm *t;
+ const struct tm *t;
{
static char buf[15];
register time_t s;
@@ -292,9 +294,13 @@ _secs(t)
}
static int
+#if __STDC__
+_conv(int n, int digits, char pad)
+#else
_conv(n, digits, pad)
int n, digits;
char pad;
+#endif
{
static char buf[10];
register char *p;
@@ -308,7 +314,7 @@ _conv(n, digits, pad)
static int
_add(str)
- register char *str;
+ register const char *str;
{
for (;; ++pt, --gsize) {
if (!gsize)