Fixed includes

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@484 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1996-05-05 00:23:52 +00:00
parent 279e4359fe
commit 5d426fa848
2 changed files with 15 additions and 1 deletions

View File

@@ -43,7 +43,9 @@ RCSID("$Id$");
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#ifdef HAVE_PATHS_H
#include <paths.h> #include <paths.h>
#endif
#include <sys/stat.h> #include <sys/stat.h>
#include <sys/param.h> #include <sys/param.h>
@@ -55,6 +57,14 @@ RCSID("$Id$");
#define _PATH_SHELLS "/etc/shells" #define _PATH_SHELLS "/etc/shells"
#endif #endif
#ifndef _PATH_BSHELL
#define _PATH_BSHELL "/bin/sh"
#endif
#ifndef _PATH_CSHELL
#define _PATH_CSHELL "/bin/csh"
#endif
/* /*
* Local shells should NOT be added here. They should be added in * Local shells should NOT be added here. They should be added in
* /etc/shells. * /etc/shells.

View File

@@ -1,4 +1,8 @@
#include "bsd_locl.h" #ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <string.h>
RCSID("$Id$"); RCSID("$Id$");