diff options
author | Damien Miller <djm@mindrot.org> | 2006-07-24 07:08:35 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-07-24 07:08:35 +0200 |
commit | 62da44f0644f5d1cc7fa3b6b967482b5d2f15aa2 (patch) | |
tree | b08bc041e8d15a630a3fad05e8f5c85145b6fc31 /openbsd-compat/port-irix.c | |
parent | - (djm) [session.c] (diff) | |
download | openssh-62da44f0644f5d1cc7fa3b6b967482b5d2f15aa2.tar.xz openssh-62da44f0644f5d1cc7fa3b6b967482b5d2f15aa2.zip |
- (djm) [openbsd-compat/basename.c openbsd-compat/bsd-closefrom.c]
[openbsd-compat/bsd-cray.c openbsd-compat/bsd-openpty.c]
[openbsd-compat/bsd-snprintf.c openbsd-compat/fake-rfc2553.c]
[openbsd-compat/port-aix.c openbsd-compat/port-irix.c]
[openbsd-compat/rresvport.c]
These look to need string.h and/or unistd.h (based on a grep for function
names)
Diffstat (limited to 'openbsd-compat/port-irix.c')
-rw-r--r-- | openbsd-compat/port-irix.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/openbsd-compat/port-irix.c b/openbsd-compat/port-irix.c index aa6db1cf8..eaa91a4b5 100644 --- a/openbsd-compat/port-irix.c +++ b/openbsd-compat/port-irix.c @@ -29,6 +29,9 @@ defined(WITH_IRIX_JOBS) || \ defined(WITH_IRIX_ARRAY) +#include <unistd.h> +#include <string.h> + #ifdef WITH_IRIX_PROJECT # include <proj.h> #endif /* WITH_IRIX_PROJECT */ |