summaryrefslogtreecommitdiff
path: root/openbsd-compat/bsd-cray.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-07-24 15:08:35 +1000
committerDamien Miller <djm@mindrot.org>2006-07-24 15:08:35 +1000
commit62da44f0644f5d1cc7fa3b6b967482b5d2f15aa2 (patch)
treeb08bc041e8d15a630a3fad05e8f5c85145b6fc31 /openbsd-compat/bsd-cray.c
parentad5ecbf07227a5c7e1423adf7c68c6cfb05bbd1e (diff)
- (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/bsd-cray.c')
-rw-r--r--openbsd-compat/bsd-cray.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/openbsd-compat/bsd-cray.c b/openbsd-compat/bsd-cray.c
index d1f1c059c..8093f6d54 100644
--- a/openbsd-compat/bsd-cray.c
+++ b/openbsd-compat/bsd-cray.c
@@ -1,5 +1,5 @@
1/* 1/*
2 * $Id: bsd-cray.c,v 1.14 2005/02/02 06:10:11 dtucker Exp $ 2 * $Id: bsd-cray.c,v 1.15 2006/07/24 05:08:36 djm Exp $
3 * 3 *
4 * bsd-cray.c 4 * bsd-cray.c
5 * 5 *
@@ -53,6 +53,8 @@
53#include <sys/stat.h> 53#include <sys/stat.h>
54#include <sys/session.h> 54#include <sys/session.h>
55#include <stdlib.h> 55#include <stdlib.h>
56#include <string.h>
57#include <unistd.h>
56#include <pwd.h> 58#include <pwd.h>
57#include <fcntl.h> 59#include <fcntl.h>
58#include <errno.h> 60#include <errno.h>