From: John Carr Date: Sun, 23 Feb 1992 12:07:27 +0000 (+0000) Subject: Always include ; on AIX or SYSV include too X-Git-Tag: krb5-1.0-beta2~248 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=47fb969665af4592c3662a2108cffd0a40e2da53;p=krb5.git Always include ; on AIX or SYSV include too git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@2214 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/include/krb5/sysincl.h b/src/include/krb5/sysincl.h index 05315e077..26ad0d44a 100644 --- a/src/include/krb5/sysincl.h +++ b/src/include/krb5/sysincl.h @@ -44,19 +44,18 @@ #endif #include /* struct stat, stat() */ #include /* MAXPATHLEN */ -#if defined(unix) || defined(__unix__) + #include /* prototypes for file-related syscalls; flags for open & friends */ -#ifdef SYSV -#include -#endif - #ifndef L_SET #define L_SET 0 /* absolute offset */ #define L_INCR 1 /* relative to current offset */ #define L_XTND 2 /* relative to end of file */ #endif /* L_SET */ +#if defined(SYSV) || defined(_AIX) +#include #endif + #endif /* KRB5_SYSINCL__ */