From: John Kohl Date: Mon, 22 Oct 1990 15:03:02 +0000 (+0000) Subject: fix prototypes for openlog, syslog X-Git-Tag: krb5-1.0-alpha2~107 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9e7b2917e57031d758b6a4b2542519719d09cefd;p=krb5.git fix prototypes for openlog, syslog git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1304 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/include/fake-stdlib.h b/src/include/fake-stdlib.h index eb5e967a6..aba5d8c79 100644 --- a/src/include/fake-stdlib.h +++ b/src/include/fake-stdlib.h @@ -566,8 +566,8 @@ char *initstate P((unsigned , char * , int )); char *setstate P((char * )); char *re_comp P((char * )); int re_exec P((char * )); -void openlog P((const char * , int )); -void syslog P((int , char *, ... )); +void openlog P((const char * , int, int )); /* our local version... */ +void syslog P((int , const char *, ... )); void closelog P((void )); long time P((long * )); char *valloc P((unsigned ));