diff options
author | 1996-10-27 23:45:32 +0000 | |
---|---|---|
committer | 1996-10-27 23:45:32 +0000 | |
commit | 0c9b4749b8b762ab07cb1f4f6e8053dfb30a54d4 (patch) | |
tree | 813bc44b851c7777a33f5f81ae774b4c5aee1095 /bin/csh/csh.c | |
parent | Don't honor $HOME if >= MAXPATHLEN (diff) | |
download | wireguard-openbsd-0c9b4749b8b762ab07cb1f4f6e8053dfb30a54d4.tar.xz wireguard-openbsd-0c9b4749b8b762ab07cb1f4f6e8053dfb30a54d4.zip |
compile
Diffstat (limited to 'bin/csh/csh.c')
-rw-r--r-- | bin/csh/csh.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/csh/csh.c b/bin/csh/csh.c index 64319064ca9..712bb1f12ae 100644 --- a/bin/csh/csh.c +++ b/bin/csh/csh.c @@ -1,4 +1,4 @@ -/* $OpenBSD: csh.c,v 1.3 1996/10/27 23:42:54 millert Exp $ */ +/* $OpenBSD: csh.c,v 1.4 1996/10/27 23:45:32 millert Exp $ */ /* $NetBSD: csh.c,v 1.14 1995/04/29 23:21:28 mycroft Exp $ */ /*- @@ -44,13 +44,14 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)csh.c 8.2 (Berkeley) 10/12/93"; #else -static char rcsid[] = "$OpenBSD: csh.c,v 1.3 1996/10/27 23:42:54 millert Exp $"; +static char rcsid[] = "$OpenBSD: csh.c,v 1.4 1996/10/27 23:45:32 millert Exp $"; #endif #endif /* not lint */ #include <sys/types.h> #include <sys/ioctl.h> #include <sys/stat.h> +#include <sys/param.h> #include <fcntl.h> #include <errno.h> #include <pwd.h> |