Lint cleanup; explicitly declare that daemon() returns an int
authorTheodore Tso <tytso@mit.edu>
Fri, 28 Apr 1995 17:00:25 +0000 (17:00 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 28 Apr 1995 17:00:25 +0000 (17:00 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5605 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/posix/ChangeLog
src/lib/krb5/posix/daemon.c

index 7734a5d02914395d85b3fccfc0b20c9560f64c68..469161b8d88b6cc48d764d5fa944d8f5c8ad0cab 100644 (file)
@@ -1,3 +1,8 @@
+Fri Apr 28 08:37:58 1995  Theodore Y. Ts'o  <tytso@lurch.mit.edu>
+
+       * 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.
index a752cf85f471bfb41a5fb462797f2681bb45be25..afe4c04b396cba79aa43fe0dbaf03efd9fe3c0b8 100644 (file)
@@ -44,6 +44,7 @@
 #define _PATH_DEVNULL "/dev/null"
 #endif
 
+int
 daemon(nochdir, noclose)
        int nochdir, noclose;
 {