From 79b332dd6748980cf9c8af39e3194a7e272b9256 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Wed, 27 Jun 2001 23:36:08 +1000 Subject: - (djm) Fix a few warnings the above turned up --- openbsd-compat/glob.c | 4 ++-- openbsd-compat/strlcat.c | 1 + openbsd-compat/strlcpy.c | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) (limited to 'openbsd-compat') diff --git a/openbsd-compat/glob.c b/openbsd-compat/glob.c index 4f70149cb..365d4334f 100644 --- a/openbsd-compat/glob.c +++ b/openbsd-compat/glob.c @@ -37,8 +37,8 @@ #include "includes.h" #include -long -get_arg_max() +static long +get_arg_max(void) { #ifdef ARG_MAX return(ARG_MAX); diff --git a/openbsd-compat/strlcat.c b/openbsd-compat/strlcat.c index 7631d9694..d80739fc6 100644 --- a/openbsd-compat/strlcat.c +++ b/openbsd-compat/strlcat.c @@ -36,6 +36,7 @@ static char *rcsid = "$OpenBSD: strlcat.c,v 1.5 2001/01/13 16:17:24 millert Exp #include #include +#include "strlcat.h" /* * Appends src to string dst of size siz (unlike strncat, siz is the diff --git a/openbsd-compat/strlcpy.c b/openbsd-compat/strlcpy.c index 276c25c37..99b06dd90 100644 --- a/openbsd-compat/strlcpy.c +++ b/openbsd-compat/strlcpy.c @@ -36,6 +36,7 @@ static char *rcsid = "$OpenBSD: strlcpy.c,v 1.4 1999/05/01 18:56:41 millert Exp #include #include +#include "strlcpy.h" /* * Copy src to string dst of size siz. At most siz-1 characters -- cgit v1.2.3