From: Jon Rochlis Date: Mon, 1 Oct 1990 00:08:46 +0000 (+0000) Subject: Declare vsyslog and openlog to make this compile on the RT X-Git-Tag: krb5-1.0-alpha2~252 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a593cfb611ee0f9114aa50b507b121064c02fd25;p=krb5.git Declare vsyslog and openlog to make this compile on the RT git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1159 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/krb5/posix/syslog.c b/src/lib/krb5/posix/syslog.c index fa3a4b874..2d8276d87 100644 --- a/src/lib/krb5/posix/syslog.c +++ b/src/lib/krb5/posix/syslog.c @@ -73,6 +73,7 @@ syslog(pri, fmt, va_alist) #endif { va_list pvar; + void vsyslog(); #ifdef __STDC__ va_start(pvar, fmt); #else @@ -94,6 +95,7 @@ vsyslog(pri, fmt, ap) time_t now, time(); int pid, saved_errno; char tbuf[2048], fmt_cpy[1024], *ctime(); + void openlog(); saved_errno = errno;