summaryrefslogtreecommitdiff
path: root/includes.h
diff options
context:
space:
mode:
Diffstat (limited to 'includes.h')
-rw-r--r--includes.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/includes.h b/includes.h
index ca943c7e6..3a6b4c32b 100644
--- a/includes.h
+++ b/includes.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: includes.h,v 1.17 2002/01/26 16:44:22 stevesk Exp $ */ 1/* $OpenBSD: includes.h,v 1.18 2004/06/13 15:03:02 djm Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -33,6 +33,7 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
33#include <grp.h> 33#include <grp.h>
34#include <time.h> 34#include <time.h>
35#include <dirent.h> 35#include <dirent.h>
36#include <stddef.h>
36 37
37#ifdef HAVE_LIMITS_H 38#ifdef HAVE_LIMITS_H
38# include <limits.h> /* For PATH_MAX */ 39# include <limits.h> /* For PATH_MAX */
@@ -180,6 +181,16 @@ static /**/const char *const rcsid[] = { (char *)rcsid, "\100(#)" msg }
180# include <kafs.h> 181# include <kafs.h>
181#endif 182#endif
182 183
184/*
185 * On HP-UX 11.11, shadow.h and prot.h provide conflicting declarations
186 * of getspnam when _INCLUDE__STDC__ is defined, so we unset it here.
187 */
188#ifdef __hpux
189# ifdef _INCLUDE__STDC__
190# undef _INCLUDE__STDC__
191# endif
192#endif
193
183#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */ 194#include <openssl/opensslv.h> /* For OPENSSL_VERSION_NUMBER */
184 195
185#include "defines.h" 196#include "defines.h"