diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2014-11-15 21:42:51 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2014-11-15 21:42:51 +0000 |
commit | 8009e3b437304fb32131cf34f6620c352787b903 (patch) | |
tree | a3c24958f0cebb898dbec97f487051634631be92 /sys | |
parent | f8285942c107cb7ff0625417f79923992ce18ef4 (diff) |
Pull in sys/types.h for the necessary typedefs
prodded by brad@, ok deraadt@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/ipc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/ipc.h b/sys/sys/ipc.h index 57e6264ef9a..d710de25d09 100644 --- a/sys/sys/ipc.h +++ b/sys/sys/ipc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ipc.h,v 1.12 2014/07/10 14:16:49 deraadt Exp $ */ +/* $OpenBSD: ipc.h,v 1.13 2014/11/15 21:42:50 guenther Exp $ */ /* $NetBSD: ipc.h,v 1.15 1996/02/09 18:25:12 christos Exp $ */ /* @@ -48,6 +48,8 @@ #ifndef _SYS_IPC_H_ #define _SYS_IPC_H_ +#include <sys/types.h> + struct ipc_perm { uid_t cuid; /* creator user id */ gid_t cgid; /* creator group id */ @@ -86,8 +88,6 @@ int ipcperm(struct ucred *, struct ipc_perm *, int); #else /* !_KERNEL */ -#include <sys/cdefs.h> - __BEGIN_DECLS key_t ftok(const char *, int); __END_DECLS |