diff options
author | Theodore Tso <tytso@mit.edu> | 1995-11-18 03:22:58 +0000 |
---|---|---|
committer | Theodore Tso <tytso@mit.edu> | 1995-11-18 03:22:58 +0000 |
commit | 18807359c9885fc7e1ca3aa37db1998364fb9d79 (patch) | |
tree | c088c5cb0e258caa8300fe70c87234d8d4c33805 /src/lib/gssapi/generic/gssapi.h | |
parent | f1f681ace236ec3e35d8380a9c7f626f12d9dfe3 (diff) | |
download | krb5-18807359c9885fc7e1ca3aa37db1998364fb9d79.tar.gz krb5-18807359c9885fc7e1ca3aa37db1998364fb9d79.tar.xz krb5-18807359c9885fc7e1ca3aa37db1998364fb9d79.zip |
Makefile.in, ChangeLog: Add support to compile shared libraries
gssapi.h: Include sys/types.h, since that's where POSIX says size_t is
defined.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7116 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/gssapi/generic/gssapi.h')
-rw-r--r-- | src/lib/gssapi/generic/gssapi.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/gssapi/generic/gssapi.h b/src/lib/gssapi/generic/gssapi.h index 99390059e8..0920179574 100644 --- a/src/lib/gssapi/generic/gssapi.h +++ b/src/lib/gssapi/generic/gssapi.h @@ -93,6 +93,11 @@ #endif /* HAVE_STDDEF_H */ /* + * POSIX says that sys/types.h is where size_t is defined. + */ +#include <sys/types.h> + +/* * If the platform supports the xom.h header file, it should be included here. */ #if HAVE_XOM_H |