From: Theodore Tso Date: Fri, 28 Apr 1995 17:00:25 +0000 (+0000) Subject: Lint cleanup; explicitly declare that daemon() returns an int X-Git-Tag: krb5-1.0-beta5~147 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=81f0a942152c80c97fe4a2b5c95260de2c655b40;p=krb5.git Lint cleanup; explicitly declare that daemon() returns an int git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5605 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/krb5/posix/ChangeLog b/src/lib/krb5/posix/ChangeLog index 7734a5d02..469161b8d 100644 --- a/src/lib/krb5/posix/ChangeLog +++ b/src/lib/krb5/posix/ChangeLog @@ -1,3 +1,8 @@ +Fri Apr 28 08:37:58 1995 Theodore Y. Ts'o + + * daemon.c (daemon): Lint cleanup; explicitly declare that + daemon() returns an int. + Thu Apr 13 16:44:55 1995 Keith Vetter (keithv@fusion.com) * syslog.c: __STDC__ conditional also checks the _WINDOWS define. diff --git a/src/lib/krb5/posix/daemon.c b/src/lib/krb5/posix/daemon.c index a752cf85f..afe4c04b3 100644 --- a/src/lib/krb5/posix/daemon.c +++ b/src/lib/krb5/posix/daemon.c @@ -44,6 +44,7 @@ #define _PATH_DEVNULL "/dev/null" #endif +int daemon(nochdir, noclose) int nochdir, noclose; {