Declare vsyslog and openlog to make this compile on the RT
authorJon Rochlis <jon@mit.edu>
Mon, 1 Oct 1990 00:08:46 +0000 (00:08 +0000)
committerJon Rochlis <jon@mit.edu>
Mon, 1 Oct 1990 00:08:46 +0000 (00:08 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1159 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/posix/syslog.c

index fa3a4b874c3360f66a9f210e7f9a91c7d8983ebc..2d8276d87aa0350d1b7d40bfb7259368287e47d4 100644 (file)
@@ -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;